-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
463 lines (403 loc) · 12.1 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<!DOCTYPE html>
<html>
<head>
<title>UP Programming Guild OJ Ranklist</title>
<meta charset="UTF-8">
<link rel="shortcut icon" href="static/icon.png">
<link rel="stylesheet" href="style.css">
<!-- So much JS files :( -->
<script type="text/javascript" src="jslib/jquery-2.1.4.min.js"></script>
<!-- <script type="text/javascript" src="jslib/jquery.tablesorter.min.js"></script> -->
<script type="text/javascript" src="jslib/q.min.js"></script>
<script type="text/javascript" src="jslib/js-cookie.js"></script>
<script type="text/javascript" src="jslib/get-user-info.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div id="div_sidebar">
<div id="div_sidebar_header">
<img src="static/logo.svg" alt="Logo" width="50" height="50">
<p>
University of the Philippines<br>Programming Guild
</p>
</div>
<nav>
<dt>Online Judges</dt>
<dd>
<a href="#div_oj_uva">UVa OJ</a>
<a href="#div_oj_icpcla">ACM ICPC Live Archive</a>
<a href="#div_oj_euler">Project Euler</a>
</dd>
<dt>Problem Compare</dt>
<dd>
<a href="#div_comp_uva">UVa OJ</a>
<a href="#div_comp_icpcla">ACM ICPC Live Archive</a>
</dd>
<dt>Mock Competition</dt>
<dd>
<a href="#div_mock_probs">Problems</a>
</dd>
<dt>Admin Things</dt>
<dd>
<a href="#div_admin_mock">Mock Information</a>
</dd>
<dt>Information</dt>
<dd>
<a href="#div_info_help">Help</a>
<a href="#div_info_about" class="activePageLink">About</a>
</dd>
</nav>
<div id="div_sidebar_footer">
<p>
UP Programming Guild ©<br>
</p>
<p>
Hosted by the UP EEEI
<a href="http://swserver.eee.upd.edu.ph">Smartwire Server</a>
</p>
<p id="p_sudo_link">
<span>Not logged-in</span> |
<a href="#">Log-in</a>
</p>
</div>
</div>
<div id="div_header">
<div id="div_header_menu">
<img id="img_menu" src="static/menu_icon.svg" alt="Menu" width="16" height="16">
<span></span>
</div>
<div id="div_header_text">
<h1>Online Judges Ranklist</h1>
</div>
</div>
<div id="div_content">
<div id="div_oj_uva">
<p>
The UVa Online Judge, hosted by the University of Valladolid,
hosts hundreds of problems similar to the ones used in
programming contests. This is one of the most popular online
judges used for honing people's programming and algorithmic
skills.
</p>
<table>
<thead>
<tr>
<th colspan="5">Universidad de Valladolid OJ (UVa)</th>
</tr>
<tr>
<th rowspan="2">Rank</th>
<th rowspan="2">Name</th>
<th colspan="3">Submissions</th>
</tr>
<tr>
<th>AC</th>
<th>WA</th>
<th>TL</th>
</tr>
</thead>
<tbody>
<tr></tr>
</tbody>
</table>
</div>
<div id="div_oj_icpcla">
<p>
The ACM-ICPC Live Archive hosts hundreds of problems used in
the ACM-ICPC Regionals and World Finals.
</p>
<table>
<thead>
<tr>
<th colspan="5">Baylor University OJ (LA)</th>
</tr>
<tr>
<th rowspan="2">Rank</th>
<th rowspan="2">Name</th>
<th colspan="3">Submissions</th>
</tr>
<tr>
<th>AC</th>
<th>WA</th>
<th>TL</th>
</tr>
</thead>
<tbody>
<tr></tr>
</tbody>
</table>
</div>
<div id="div_oj_euler">
<p>
Project Euler is a series of challenging
mathematical/computer programming problems that will require
more than just mathematical insights to solve. Although
mathematics will help you arrive at elegant and efficient
methods, the use of a computer and programming skills will
be required to solve most problems.
Project Euler exists to encourage, challenge, and develop
the skills and enjoyment of anyone with an interest in the
fascinating world of mathematics.
</p>
<table>
<thead>
<tr>
<th colspan="3">Project Euler (Euler)</th>
</tr>
<tr>
<th>Rank</th>
<th>Name</th>
<th>Solved</th>
</tr>
</thead>
<tbody>
<tr></tr>
</tbody>
</table>
</div>
<div id="div_comp_uva">
<p>
You can type a UVa problem ID in the text box below and check
which persons in that ranklist solved that problem.
</p>
<form>
<input type="text" placeholder="UVa Problem ID">
<button>Compare!</button>
</form>
</div>
<div id="div_comp_icpcla">
<p>
You can type an LA problem ID in the text box below and check
which persons in that ranklist solved that problem.
</p>
<form>
<input type="text" placeholder="LA Problem ID">
<button>Compare!</button>
</form>
</div>
<div id="div_mock_probs">
<p>
Problems solved during the mock competitions every Saturday
are shown here. You can download the problem statements and
their corresponding judge input and output. All of the
problems from the competitions are taken from past ACM ICPC
competitions among the Preliminary, Regional, and World Final
events.
</p>
<dt></dt>
<dd>Northwestern Europe Regional Contest (2014)</dd>
<ul>
<li>A: Around the Track</li>
<li>B: Biking Duck</li>
<li>C: Cent Savings</li>
<li>D: Digi Comp II</li>
<li>E: Euclidean TSP</li>
<li>F: Finding Lines</li>
<li>G: Gathering</li>
<li>H: Hyacinth</li>
<li>I: Indoorienteering</li>
<li>J: Judging</li>
<li>K: Knapsack Collection</li>
</ul>
<!--
<dt>September 12, 2015</dt>
<dd>ACM ICPC Singapore Preliminary (2015)</dd>
<ul>
<li>A: ICPC Tutorial</li>
<li>B: 2048</li>
<li>C: VisuAlgo Online Quiz</li>
<li>D: Grid MST</li>
<li>E: Rectangle Land</li>
<li>F: Triangles</li>
<li>G: Ski</li>
<li>H: Panda Chess</li>
<li>I: Pivot</li>
<li>J: Animal Classification</li>
</ul>
<dt>September 6, 2015</dt>
<dd>ACM ICPC Greater New York Region (2014)</dd>
<ul>
<li>A: Height Ordering</li>
<li>B: Islands in the Data Stream</li>
<li>C: Floating-Point Format Conversion</li>
<li>D: Happy Happy Prime Prime</li>
<li>E: Mancala</li>
<li>F: A Rational Sequence</li>
<li>G: Growing Rectangular Spiral</li>
<li>H: Farey Sums</li>
<li>I: The Queen's Super-circular Patio</li>
</ul>
<dt>September 6, 2015</dt>
<dd>ACM ICPC Greater New York Region (2012)</dd>
<ul>
<li>A: Hailstone HOTPO</li>
<li>B: B-Casting</li>
<li>C: Pen Counts</li>
<li>D: Maximum Random Walk</li>
<li>E: Faulhaber's Triangle</li>
<li>F: The King's Ups and Downs</li>
<li>G: Mad Veterinarian</li>
<li>H: Windmill Animation</li>
<li>I: Push-To Telescope</li>
<li>X: Mystery</li>
</ul>
<dt>September 5, 2015</dt>
<dd>ACM ICPC Singapore Warm-up (2015)</dd>
<ul>
<li>A: Eight Queens</li>
<li>B: Color Walk</li>
<li>C: Flexible Spaces</li>
<li>E: Human Cannonball Run</li>
<li>F: Mixed Fractions</li>
<li>G: Pesky Mosquitoes</li>
<li>H: Narrow Art Gallery</li>
<li>I: Tractor</li>
<li>J: Units</li>
<li>K: Yikes - Bikes!</li>
</ul>
<dt>August 29, 2015</dt>
<dd>Iran ICPC (2006)</dd>
<ul>
<li>A: Packing Unit 4D Cubes</li>
</ul>
<dt>August 8, 2015</dt>
<dd>3rd Iran Internet Programming Contest (2005)</dd>
<ul>
<li>A: Packing Unit 4D Cubes</li>
</ul>
<dt>August 1, 2015</dt>
<dd>1st Iran Nationwide Internet Programming Contest (2002)</dd>
<ul>
<li>A: Packing Unit 4D Cubes</li>
<li>B: The Fun Number System</li>
<li>C: Communication System</li>
<li>D: Number Sequence</li>
<li>E: Anniversary Cake</li>
<li>F: Tester Program</li>
<li>G: 2D-Nim</li>
</ul>
<dt>July 25, 2015</dt>
<dd>4th Iran Internet Programming Contest (2006)</dd>
<ul>
<li>A: The Idiot of the Year Contest!</li>
<li>B: Parsing Real Numbers</li>
<li>C: Co-workers from Hell</li>
<li>D: Connected Gheeves</li>
<li>E: Rotating Scoreboard</li>
<li>F: ACM Underground</li>
<li>G: Expression Evaluator</li>
<li>H: Rectangle Cutting</li>
</ul>
<dt>March 21, 2015</dt>
<dd>Waterloo Local Contest (2000)</dd>
<ul>
<li>A: Y2K Accounting Bug</li>
<li>B: Airline Hub</li>
<li>C: Snakes</li>
<li>D: Snap</li>
<li>E: Steps</li>
</ul>
<dd>Waterloo Local Contest (2005)</dd>
<ul>
<li>F: So you want to be a 2<sup>n</sup>-aire?</li>
<li>G: Ferry Loading III</li>
<li>H: Pick-up Sticks</li>
<li>I: Rock-Paper-Scissors Tournament</li>
<li>J: Structural Equivalence</li>
</ul>
<dt>March 14, 2015</dt>
<dd>Waterloo Local Contest (1999)</dd>
<ul>
<li>A: Billiard</li>
<li>B: The Brick Stops Here</li>
<li>C: Election</li>
<li>D: Maze</li>
<li>E: Boastin' Red Socks</li>
</ul>
<dd>Waterloo Local Contest (2006)</dd>
<ul>
<li>F: Semi-prime H-numbers</li>
<li>G: Rectilinear Polygon</li>
<li>H: Life Forms</li>
<li>I: Tautology</li>
<li>J: Rinse</li>
</ul>
<dt>March 7, 2015</dt>
<dd>Waterloo Local Contest (1998)</dd>
<ul>
<li>A: Hippity Hopscotch</li>
<li>B: Crypt Kicker II</li>
<li>C: Watching Watches</li>
<li>D: Pousse</li>
<li>E: Polylops</li>
</ul>
<dd>Waterloo ACM Programming Contest (2007)</dd>
<ul>
<li>F: Open Source</li>
<li>G: Antimonotonicity</li>
<li>H: Humidex</li>
<li>I: Tour de France</li>
<li>J: Texas Trip</li>
</ul>
<dt>February 28, 2015</dt>
<dd>Waterloo ACM Programming Contest (2007)</dd>
<ul>
<li>A: Exchange Rates</li>
<li>B: Conformity</li>
<li>C: Pseudoprime Numbers</li>
<li>D: Carpool</li>
<li>E: Friend or Foe</li>
</ul>
<dd>Waterloo Practice Contest (1998)</dd>
<ul>
<li>F: Crypt Kicker</li>
<li>G: Dick and Jane</li>
<li>H: Leaps Tall Buildings (in a single bound)</li>
<li>I: Contest Scoreboard</li>
<li>J: Poker Hands</li>
</ul>
-->
</div>
<div id="div_admin_mock">
<p>
You can edit or add mock information here.
</p>
</div>
<div id="div_info_help">
<p>
You need help?
</p>
<p>
Great.
</p>
<p>
There are three submenus in this website. The first is the
"Online Judges" one. You will see here the ranks of each member
of the Guild relative to each other. The "Problem Compare"
submenu lets you type a list of problem IDs and check the
people who solved those problems. Use that to find out which
problems you can probably solve, or problems other can't
solve yet.
</p>
</div>
<div id="div_info_about">
<p>
This site shows the real-time rankings
of UPPG members in several popular competitive coding
online judges. Click on the sidebar menu to pick an
online judge rank.
</p>
<p>
For correspondence related to this web application, you can
e-mail Carl's UPPG mail account. Send a mail if you want to
add or correct your own usernames in the ranklist, provided
that you're part of the Guild. You can also suggest other OJs
to add as long as they have an API for the number of problems
solved.
</p>
</div>
<div id="div_content_loader">
<img src="static/loader.gif" alt="Fetching Data..." width="50" height="50">
</div>
</div>
</body>
</html>