-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproblemset.php
133 lines (121 loc) · 4.67 KB
/
problemset.php
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
<?php
class problemset
{
static $problems = array();
static function takeBackup()
{
$dir = "data/dataBackups/";
if (!file_exists($dir)) {
mkdir($dir, 0777, true);
}
$array_map = array_map('filemtime', ($files = glob($dir . "data*.txt")));
array_multisort($array_map, SORT_ASC, $files);
if (file_exists("data/data.txt")) {
$text = file_get_contents("data/data.txt");
file_put_contents("data/dataBackups/data" . Date(date(" Y.m.d h:m:s")) . ".txt", $text);
if (count($files) > MAXIMUM_BACKUP_FILES) {
unlink($files[0]);
}
}
}
static function resetUsed()
{
foreach (problemset::$problems as $problem) {
$problem->used = false;
}
problemset::update();
}
static function readFromFile()
{
problemset::takeBackup();
if (file_exists(realpath("data/data.txt"))) {
$data = json_decode(file_get_contents("data/data.txt"), true);
foreach ($data as $problemJson) {
problemset::addProblem($problemJson["problemName"], $problemJson["tags"],
$problemJson["difficulty"], $problemJson["prior"], (bool)$problemJson["used"],
(int)$problemJson["like"], (int)$problemJson["accepted"], $problemJson["usersLike"], true);
}
}
}
static function update()
{
file_put_contents("data/data.txt", json_encode(problemset::$problems));
}
static function addProblem($problemName, $tags, $difficulty, $prior, $used, $like = 0, $accepted = 0, $usersLike = null, $inside = false)
{
$problemId = preg_split('/ /', $problemName)[0];
if (!isset(problemset::$problems[$problemId])) {
problemset::$problems[$problemId] = new problem($problemId, $tags, $difficulty, $prior, $used, $like, $accepted, $usersLike, $inside);
} else {
problemset::$problems[$problemId]->merge($tags, $difficulty, $prior, $used, $inside);
}
if (!$inside) {
problemset::update();
}
return $problemId;
}
static function addUserSolved($problemId, $inside = false)
{
problemset::$problems[$problemId]->addUserSolved();
if (!$inside) {
problemset::update();
}
}
static function resetUserSolved()
{
foreach (problemset::$problems as $problem) {
$problem->accepted = 0;
}
problemset::update();
}
static function addUserLiked($username, $problemId, $inside = false)
{
if (!isset(problemset::$problems[$problemId])) {
throw new APIException("problem doesn't exist!");
}
problemset::$problems[$problemId]->addUserLiked($username);
if (!$inside) {
problemset::update();
}
}
static function chooseProblem($L, $R, $tags, $negativeTags, array $forbiddenProblemIds)
{
$maxLike = array();
$maxAccepted = array();
foreach (problemset::$problems as $k => $v) {
if (!isset($maxLike[$v->difficulty]) || !isset($maxAccepted[$v->difficulty])) {
$maxLike[$v->difficulty] = 0;
$maxAccepted[$v->difficulty] = 0;
}
$maxLike[$v->difficulty] = max($maxLike[$v->difficulty], $v->like);
$maxAccepted[$v->difficulty] = max($maxAccepted[$v->difficulty], $v->accepted);
}
$sortOnBtr = array();
foreach (problemset::$problems as $k => $v) {
if ($L <= $v->calcDif() && $v->calcDif() <= $R && $v->used != true && !in_array($v->problemName, $forbiddenProblemIds)) {
$sortOnBtr[$k] = $v->calcBtr($tags, $negativeTags, $maxAccepted[$v->difficulty], $maxLike[$v->difficulty], $L, $R);
}
}
echo "selecting a problem in range [$L, $R] with tags (" . implode(", ", $tags) . ")...\n";
echo "number of candidates: " . count($sortOnBtr) . "\n";
$candid = array();
for ($i = 0; $i < 3; $i++) {
$str = "";
foreach ($sortOnBtr as $k => $v) {
if ((strlen($str) == 0 || $v > $sortOnBtr[$str]) and !in_array($str, $candid))
$str = $k;
}
if ($str != "") {
$candid[$i] = $str;
} else {
throw new APIException("field to build contest choose problem");
}
}
if (count($candid) == 0)
return false;
$ans = $candid[rand(0, count($candid) - 1)];
problemset::$problems[$ans]->used = true;
problemset::update();
return problemset::$problems[$ans]->problemName;
}
}