比赛正在进行中
很遗憾,您尚未报名。比赛结束后再来看吧~
"); } } } if (isset($_POST['check_notice'])) { $result = mysql_query("select * from contests_notice where contest_id = '${contest['id']}' order by time desc limit 1"); try { while ($row = mysql_fetch_array($result)) { if (new DateTime($row['time']) > new DateTime($_POST['last_time'])) { die(json_encode(array('msg' => $row['title'] . ' : ' . $row['content'], 'time' => UOJTime::$time_now_str))); } } } catch (Exception $e) { } die(json_encode(array('time' => UOJTime::$time_now_str))); } if (isset($_GET['tab'])) { $cur_tab = $_GET['tab']; } else { $cur_tab = 'dashboard'; } // problems: pos => id // data : id, submit_time, submitter, problem_pos, score // people : username, user_rating function queryContestData() { global $contest; $problems = array(); $prob_pos = array(); $n_problems = 0; $result = mysql_query("select problem_id from contests_problems where contest_id = ${contest['id']} order by problem_id"); while ($row = mysql_fetch_array($result, MYSQL_NUM)) { $prob_pos[$problems[] = (int)$row[0]] = $n_problems++; } $data = array(); if ($contest['cur_progress'] < CONTEST_FINISHED) { $result = mysql_query("select id, submit_time, submitter, problem_id, score from submissions where contest_id = {$contest['id']} and score is not null order by id"); } else { $result = mysql_query("select submission_id, date_add('{$contest['start_time_str']}', interval penalty second), submitter, problem_id, score from contests_submissions where contest_id = {$contest['id']}"); } while ($row = mysql_fetch_array($result, MYSQL_NUM)) { $row[0] = (int)$row[0]; $row[3] = $prob_pos[$row[3]]; $row[4] = (int)$row[4]; $data[] = $row; } $people = array(); $result = mysql_query("select username, user_rating from contests_registrants where contest_id = {$contest['id']} and has_participated = 1"); while ($row = mysql_fetch_array($result, MYSQL_NUM)) { $row[1] = (int)$row[1]; $people[] = $row; } return array('problems' => $problems, 'data' => $data, 'people' => $people); } function calcStandings($contest_data, &$score, &$standings, $update_contests_submissions = false) { global $contest; // score: username, problem_pos => score, penalty, id $score = array(); $n_people = count($contest_data['people']); $n_problems = count($contest_data['problems']); foreach ($contest_data['people'] as $person) { $score[$person[0]] = array(); } foreach ($contest_data['data'] as $submission) { $penalty = (new DateTime($submission[1]))->getTimestamp() - $contest['start_time']->getTimestamp(); if ($contest['extra_config']['standings_version'] >= 2) { if ($submission[4] == 0) { $penalty = 0; } } $score[$submission[2]][$submission[3]] = array($submission[4], $penalty, $submission[0]); } // standings: rank => score, penalty, [username, user_rating], virtual_rank $standings = array(); foreach ($contest_data['people'] as $person) { $cur = array(0, 0, $person); for ($i = 0; $i < $n_problems; $i++) { if (isset($score[$person[0]][$i])) { $cur_row = $score[$person[0]][$i]; $cur[0] += $cur_row[0]; $cur[1] += $cur_row[1]; if ($update_contests_submissions) { DB::insert("insert into contests_submissions (contest_id, submitter, problem_id, submission_id, score, penalty) values ({$contest['id']}, '{$person[0]}', {$contest_data['problems'][$i]}, {$cur_row[2]}, {$cur_row[0]}, {$cur_row[1]})"); } } } $standings[] = $cur; } usort($standings, function($lhs, $rhs) { if ($lhs[0] != $rhs[0]) { return $rhs[0] - $lhs[0]; } else if ($lhs[1] != $rhs[1]) { return $lhs[1] - $rhs[1]; } else { return strcmp($lhs[2][0], $rhs[2][0]); } }); $is_same_rank = function($lhs, $rhs) { return $lhs[0] == $rhs[0] && $lhs[1] == $rhs[1]; }; for ($i = 0; $i < $n_people; $i++) { if ($i == 0 || !$is_same_rank($standings[$i - 1], $standings[$i])) { $standings[$i][] = $i + 1; } else { $standings[$i][] = $standings[$i - 1][3]; } } } if (isSuperUser($myUser)) { if (CONTEST_PENDING_FINAL_TEST <= $contest['cur_progress'] && $contest['cur_progress'] <= CONTEST_TESTING) { $start_test_form = new UOJForm('start_test'); $start_test_form->handle = function() { global $contest; $result = mysql_query("select id, problem_id, content from submissions where contest_id = {$contest['id']}"); while ($submission = mysql_fetch_array($result, MYSQL_ASSOC)) { if (!isset($contest['extra_config']["problem_{$submission['problem_id']}"])) { $content = json_decode($submission['content'], true); if (isset($content['final_test_config'])) { $content['config'] = $content['final_test_config']; unset($content['final_test_config']); } if (isset($content['first_test_config'])) { unset($content['first_test_config']); } $esc_content = mysql_real_escape_string(json_encode($content)); DB::update("update submissions set judge_time = NULL, result = '', score = NULL, status = 'Waiting Rejudge', content = '$esc_content' where id = {$submission['id']}"); } } mysql_query("update contests set status = 'testing' where id = {$contest['id']}"); }; $start_test_form->submit_button_config['class_str'] = 'btn btn-danger btn-block'; $start_test_form->submit_button_config['smart_confirm'] = ''; if ($contest['cur_progress'] < CONTEST_TESTING) { $start_test_form->submit_button_config['text'] = '开始最终测试'; } else { $start_test_form->submit_button_config['text'] = '重新开始最终测试'; } $start_test_form->runAtServer(); } if ($contest['cur_progress'] >= CONTEST_TESTING) { $publish_result_form = new UOJForm('publish_result'); $publish_result_form->handle = function() { // time config set_time_limit(0); ignore_user_abort(true); global $contest; $contest_data = queryContestData(); calcStandings($contest_data, $score, $standings, true); if (!isset($contest['extra_config']['unrated'])) { $rating_k = isset($contest['extra_config']['rating_k']) ? $contest['extra_config']['rating_k'] : 400; $ratings = calcRating($standings, $rating_k); } else { $ratings = array(); for ($i = 0; $i < count($standings); $i++) { $ratings[$i] = $standings[$i][2][1]; } } for ($i = 0; $i < count($standings); $i++) { $user = queryUser($standings[$i][2][0]); $change = $ratings[$i] - $user['rating']; $user_link = getUserLink($user['username']); if ($change != 0) { $tail = '' . ($change > 0 ? '+' : '') . $change . ''; $content = <<您在 {$contest['name']} 这场比赛后的Rating变化为${tail},当前Rating为 {$ratings[$i]}。
EOD; } else { $content = <<您在 {$contest['name']} 这场比赛后Rating没有变化。当前Rating为 {$ratings[$i]}。
EOD; } sendSystemMsg($user['username'], 'Rating变化通知', $content); mysql_query("update user_info set rating = {$ratings[$i]} where username = '{$standings[$i][2][0]}'"); mysql_query("update contests_registrants set rank = {$standings[$i][3]} where contest_id = {$contest['id']} and username = '{$standings[$i][2][0]}'"); } mysql_query("update contests set status = 'finished' where id = {$contest['id']}"); }; $publish_result_form->submit_button_config['class_str'] = 'btn btn-danger btn-block'; $publish_result_form->submit_button_config['smart_confirm'] = ''; $publish_result_form->submit_button_config['text'] = '公布成绩'; $publish_result_form->runAtServer(); } } function echoDashboard() { global $myUser, $contest, $post_notice; echo '# | '; echo '', UOJLocale::get('problems::problem'), ' | '; echo ''; echo ''; $contest_problems = DB::selectAll("select contests_problems.problem_id, best_ac_submissions.submission_id from contests_problems left join best_ac_submissions on contests_problems.problem_id = best_ac_submissions.problem_id and submitter = '{$myUser['username']}' where contest_id = {$contest['id']} order by contests_problems.problem_id asc"); for ($i = 0; $i < count($contest_problems); $i++) { $problem = queryProblemBrief($contest_problems[$i]['problem_id']); echo '|
---|---|---|
'; } else { echo ' | '; } echo chr(ord('A') + $i), ' | '; echo '', getContestProblemLink($problem, $contest['id']), ' | '; echo '
此次比赛为OI赛制。
注意:比赛时只显示测样例的结果。
= UOJLocale::get('contests::contest registrants') ?> 管理