forked from earthshakira/a2oj-clientside
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Category165.html
115 lines (114 loc) · 2.69 KB
/
Category165.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<title>A2OJ Category: Dijkstra</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: center;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push( [ '_setAccount', 'UA-16947566-3' ]);
_gaq.push( [ '_trackPageview' ]);
( function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl'
: 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body><script src="fetcher.js"></script>
<center>
<font size=4>
<b>
<u>
Dijkstra problems</u></b></font><br/><br/>
<table>
<tr>
<th></th>
<th>Problem Name</th>
<th>Online Judge</th>
<th>Year</th>
<th>Contest</th>
<th>Difficulty Level</th>
</tr>
<tr>
<td>1</td>
<td><a href="http://codeforces.com/problemset/problem/20/C" target="_blank">Dijkstra?</a></td>
<td>Codeforces</td>
<td></td>
<td>Codeforces Alpha Round #20 (Codeforces format)</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td><a href="http://acm.tju.edu.cn/toj/showp1056.html" target="_blank">Labyrinth</a></td>
<td>TJU</td>
<td></td>
<td></td>
<td>1</td>
</tr>
<tr>
<td>3</td>
<td><a href="https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=53" target="_blank">The Postal Worker Rings Once</a></td>
<td>UVA</td>
<td></td>
<td></td>
<td>1</td>
</tr>
<tr>
<td>4</td>
<td><a href="http://www.spoj.com/problems/DSUBSEQ/" target="_blank">Distinct Subsequences</a></td>
<td>SPOJ</td>
<td></td>
<td></td>
<td>1</td>
</tr>
<tr>
<td>5</td>
<td><a href="https://icpcarchive.ecs.baylor.edu/index.php?option=onlinejudge&page=show_problem&problem=2362" target="_blank">Tobo or not Tobo</a></td>
<td>Live Archive</td>
<td>2008</td>
<td>Africa/Middle East - Arab and North Africa</td>
<td>2</td>
</tr>
<tr>
<td>6</td>
<td><a href="https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=1498" target="_blank">XYZZY</a></td>
<td>UVA</td>
<td></td>
<td></td>
<td>2</td>
</tr>
<tr>
<td>7</td>
<td><a href="https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=2733" target="_blank">Pick up sticks</a></td>
<td>UVA</td>
<td></td>
<td></td>
<td>2</td>
</tr>
<tr>
<td>8</td>
<td><a href="https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=2352" target="_blank">Full Tank?</a></td>
<td>UVA</td>
<td></td>
<td></td>
<td>3</td>
</tr>
</table>
</center>
</body>
</html>