-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcommon.php
More file actions
397 lines (332 loc) · 10.9 KB
/
Copy pathcommon.php
File metadata and controls
397 lines (332 loc) · 10.9 KB
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
<?php
// -----------------------------------------------------------------------
function navigation($from)
{
print "<hr><div align=\"center\"><p>\n";
print "[ ";
if ($from != "index")
print "<a href=\"index.php\">Contest Page</a>";
else print "Contest Page";
print " | ";
if ($from != "scores")
print "<a href=\"scores.php\">Scoreboard</a>";
else print "Scoreboard";
print " | ";
if ($from != "submit")
print "<a href=\"submit.php\">Submissions</a>";
else print "Submissions";
print " | ";
if ($from != "clarify")
print "<a href=\"clarify.php\">Clarifications</a>";
else print "Clarifications";
print " | ";
if ($from != "help")
print "<a href=\"help.php\">Help</a>";
else print "Help";
print " | ";
// toggle between displaying "Log In" and "Log Out"
if (empty($_SESSION["teamid"]))
{
if ($from != "login")
print "<a href=\"login.php\">Log In</a>";
else print "Log In";
}
else
{
print "<a href=\"login.php\">Log Out</a>";
}
print " ]\n";
print "</p></div>\n";
}
function jnavigation($from)
{
print "<hr><div align=\"center\"><p>\n";
print "[ ";
if ($from != "judge")
print "<a href=\"judge.php\">Judgements</a>";
else print "Judgements";
print " | ";
if ($from != "jclarify")
print "<a href=\"jclarify.php\">Clarifications</a>";
else print "Clarifications";
print " | ";
if ($from != "jscores")
print "<a href=\"jscores.php\">Scoreboard</a>";
else print "Scoreboard";
print " | ";
if ($from != "jconfig")
print "<a href=\"jconfig.php\">Configuration</a>";
else print "Configuration";
print " | ";
print "<a href=\"..\" target=\"new\">Contest Page</a>";
print " ]\n";
print "</p></div>\n";
}
function footer()
{
print "<hr><p><small>\n";
print "Ultra Cool Programming Contest Control Centre v1.8<br>\n";
print "Copyright (c) 2005-2010 by Sonny Chan<br>\n";
print "</small></p>\n";
}
// -----------------------------------------------------------------------
function contesttime($cdate, $ctime)
{
$dstamp = strtotime($cdate);
list($cstart, $clhours, $clminutes) = sscanf($ctime, "%s + %d:%d");
$sstamp = strtotime($cstart, $dstamp);
$estamp = $sstamp + $clhours*60*60 + $clminutes*60;
return array($sstamp, $estamp);
}
function intervaltostr($interval)
{
$seconds = $interval % 60; $interval /= 60;
$minutes = $interval % 60; $interval /= 60;
$hours = $interval;
$istr = sprintf("%02d:%02d", $hours, $minutes);
return $istr;
}
// -----------------------------------------------------------------------
class Contest
{
var $cname;
var $cdate;
var $ctime;
var $chost;
var $tstart;
var $tend;
var $tnow;
var $tfreeze;
var $firstletter;
var $showtitles;
var $pletters = array();
var $pnames = array();
var $purls = array();
var $okay;
function Contest($problemfile, $problempath)
{
// Don't know why this include is necessary... remove if possible
include("config.php");
$this->tnow = time();
if ($fp = fopen($problemfile, "r"))
{
flock($fp, LOCK_SH);
// read page title and contest host contact
fgets($fp);
$this->chost = trim(fgets($fp));
// read contest date and time from file
$datestr = trim(fgets($fp));
$timestr = trim(fgets($fp));
// convert contest date and time into time stamps and strings
list($this->tstart, $this->tend) = contesttime($datestr, $timestr);
$this->cdate = date("l, F d, Y", $this->tstart);
$this->ctime = date("H:i", $this->tstart) . " to " . date("H:i T", $this->tend);
// read scoreboard freeze, first letter, and show titles
list($freeze, $this->firstletter, $showtitles) = explode(";", trim(fgets($fp)));
$this->tfreeze = $this->tend - $freeze*60;
$this->showtitles = $showtitles ? True : False;
// read problem set name
$this->cname = trim(fgets($fp));
// read problem names and URLs into their arrays
$letter = $this->firstletter;
while ($line = fgets($fp))
{
$line = explode(";", $line);
$ptitle = ($this->showtitles || $this->tnow >= $this->tstart) ?
htmlspecialchars(trim($line[0])) : "?????";
$name = "$letter - " . $ptitle;
$url = $problempath . trim($line[1]);
$this->pletters[] = $letter;
$this->pnames[$letter] = $name;
$this->purls[$letter] = $url;
++$letter;
}
fclose($fp);
$this->okay = True;
}
else
{
print "Cannot open $problemfile for data!";
$this->okay = False;
}
}
function problemlink($letter)
{
$name = $this->pnames[$letter];
$url = $this->purls[$letter];
if ($this->tnow >= $this->tstart)
return "<a href=\"$url\">$name</a>";
else
return $name;
}
function problemlonglink($letter)
{
$name = $this->pnames[$letter];
$url = $this->purls[$letter];
if ($this->tnow >= $this->tstart)
return "<a href=\"$url\">Problem $name</a>";
else
return "Problem " . $name;
}
function problemshortlink($letter)
{
$url = $this->purls[$letter];
if ($this->tnow >= $this->tstart)
return "<a href=\"$url\">$letter</a>";
else
return $letter;
}
function jproblemlink($letter)
{
$name = $this->pnames[$letter];
$url = $this->purls[$letter];
if ($this->tnow >= $this->tstart)
return "<a href=\"../$url\">$name</a>";
else
return $name;
}
function jproblemshortlink($letter)
{
$url = $this->purls[$letter];
if ($this->tnow >= $this->tstart)
return "<a href=\"../$url\">$letter</a>";
else
return $letter;
}
}
// -----------------------------------------------------------------------
class Run
{
var $time;
var $team;
var $problem;
var $language;
var $file;
var $verdict;
function Run($key)
{
list($this->time, $this->team, $this->problem, $this->language, $this->file) = explode(",", trim($key));
$this->verdict = "U";
}
function key()
{
return "$this->time,$this->team,$this->problem,$this->language,$this->file";
}
function judgement()
{
return "$this->time,$this->team,$this->problem,$this->language,$this->file;$this->verdict\n";
}
}
// -----------------------------------------------------------------------
class TeamScore
{
var $name;
var $id;
var $solved = array();
var $attime = array();
var $booboo = array();
var $total = 0;
var $penalty = 0;
function TeamScore($team, $id = "")
{
$this->name = $team;
$this->id = $id;
}
// report the result of a judgement to this team's record
// assumes all reports are done in chronological order
function report($problem, $time, $verdict)
{
if (in_array($problem, $this->solved))
return;
switch ($verdict)
{
// unjuged or submission error, ignore
case "U":
case "E":
break;
// accepted, add penalty points
case "A":
$this->solved[] = $problem;
$this->attime[$problem] = $time;
$this->total++;
$this->penalty += $this->attime[$problem] + $this->booboo[$problem] * 20;
break;
// default - assume it's wrong
default:
$this->booboo[$problem] += 1;
break;
}
}
function problemstat($problem)
{
$stat = " ";
if (in_array($problem, $this->solved))
{
$stat = $this->attime[$problem];
if (array_key_exists($problem, $this->booboo))
$stat = $stat . "+" . ($this->booboo[$problem] * 20);
}
else if (array_key_exists($problem, $this->booboo))
{
$stat = "(-" . $this->booboo[$problem] . ")";
}
return $stat;
}
function key()
{
return sprintf("%02d%05d%s", 99 - $this->total, $this->penalty, $this->name);
}
}
// -----------------------------------------------------------------------
class Clarification
{
var $id;
var $from;
var $problem;
var $responded = False;
var $fresh = False;
var $question;
var $answer;
function Clarification($team, $p, $q)
{
$this->id = time();
$this->from = $team;
$this->problem = $p;
$this->question = $q;
}
function read($fp)
{
$stamp = (int) trim(fgets($fp));
$team = trim(fgets($fp));
$p = trim(fgets($fp));
$r = (boolean) trim(fgets($fp));
$q = "";
$a = "";
if (trim(fgets($fp)) == "{")
for ($line = fgets($fp); trim($line) != "}"; $line = fgets($fp))
$q = $q . $line;
if ($r && trim(fgets($fp)) == "{")
for ($line = fgets($fp); trim($line) != "}"; $line = fgets($fp))
$a = $a . $line;
$c = new Clarification($team, $p, $q);
$c->id = $stamp;
$c->responded = $r;
$c->answer = $a;
return $c;
}
function write($fp)
{
if ($fp)
{
fputs($fp, $this->id . "\n");
fputs($fp, $this->from . "\n");
fputs($fp, $this->problem . "\n");
fputs($fp, $this->responded . "\n");
fputs($fp, "{\n" . $this->question . "\n}\n");
if ($this->responded)
fputs($fp, "{\n" . $this->answer . "\n}\n");
}
}
}
// -----------------------------------------------------------------------
?>