-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscorer.cpp
175 lines (155 loc) · 4.83 KB
/
scorer.cpp
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
/**
* Default validator from https://github.com/Kattis/problemtools
* Modified (as small as possible) to Judgels format by jonathanirvings.
*/
#include <fstream>
#include <iostream>
#include <string>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <cmath>
#include <cstdarg>
std::ifstream judgein, judgeans, conans;
FILE *judgemessage = NULL;
FILE *diffpos = NULL;
int judgeans_pos, con_pos;
int judgeans_line, con_line;
void ac() {
puts("AC");
exit(0);
}
void wa() {
puts("WA");
exit(0);
}
void wrong_answer(const char *err, ...) {
wa();
}
void judge_error(const char *err, ...) {
va_list pvar;
va_start(pvar, err);
// If judgemessage hasn't been set up yet, write error to stderr
if (!judgemessage) judgemessage = stderr;
vfprintf(judgemessage, err, pvar);
fprintf(judgemessage, "\n");
assert(!"Judge Error");
}
bool isfloat(const char *s, double &val) {
char trash[20];
double v;
if (sscanf(s, "%lf%10s", &v, trash) != 1) return false;
val = v;
return true;
}
template <typename Stream>
void openfile(Stream &stream, const char *file, const char *whoami) {
stream.open(file);
if (stream.fail()) {
judge_error("%s: failed to open %s\n", whoami, file);
}
}
FILE *openfeedback(const char *feedbackdir, const char *feedback, const char *whoami) {
std::string path = std::string(feedbackdir) + "/" + std::string(feedback);
FILE *res = fopen(path.c_str(), "w");
if (!res) {
judge_error("%s: failed to open %s for writing", whoami, path.c_str());
}
return res;
}
const char *USAGE = "Usage: %s judge_in judge_ans contestant_ans";
int main(int argc, char **argv) {
if(argc < 4) {
judge_error(USAGE, argv[0]);
}
openfile(judgein, argv[1], argv[0]);
openfile(judgeans, argv[2], argv[0]);
openfile(conans, argv[3], argv[0]);
bool case_sensitive = false;
bool space_change_sensitive = false;
bool use_floats = false;
double float_abs_tol = -1;
double float_rel_tol = -1;
for (int a = 4; a < argc; ++a) {
if (!strcmp(argv[a], "case_sensitive")) {
case_sensitive = true;
} else if (!strcmp(argv[a], "space_change_sensitive")) {
space_change_sensitive = true;
} else if (!strcmp(argv[a], "float_absolute_tolerance")) {
if (a+1 == argc || !isfloat(argv[a+1], float_abs_tol))
judge_error(USAGE, argv[0]);
++a;
} else if (!strcmp(argv[a], "float_relative_tolerance")) {
if (a+1 == argc || !isfloat(argv[a+1], float_rel_tol))
judge_error(USAGE, argv[0]);
++a;
} else if (!strcmp(argv[a], "float_tolerance")) {
if (a+1 == argc || !isfloat(argv[a+1], float_rel_tol))
judge_error(USAGE, argv[0]);
float_abs_tol = float_rel_tol;
++a;
} else {
judge_error(USAGE, argv[0]);
}
}
use_floats = float_abs_tol >= 0 || float_rel_tol >= 0;
judgeans_pos = con_pos;
judgeans_line = con_line = 1;
std::string judge, team;
char trash[20];
while (true) {
// Space! Can't live with it, can't live without it...
while (isspace(judgeans.peek())) {
char c = (char)judgeans.get();
if (space_change_sensitive) {
int d = conans.get();
if (c != d) {
wrong_answer("Space change error: got %d expected %d", d, c);
}
if (d == '\n') ++con_line;
++con_pos;
}
if (c == '\n') ++judgeans_line;
++judgeans_pos;
}
while (isspace(conans.peek())) {
char d = (char)conans.get();
if (space_change_sensitive) {
wrong_answer("Space change error: judge out of space, got %d from team", d);
}
if (d == '\n') ++con_line;
++con_pos;
}
if (!(judgeans >> judge))
break;
if (!(conans >> team)) {
wrong_answer("User EOF while judge had more output\n(Next judge token: %s)", judge.c_str());
}
double jval, tval;
if (use_floats && isfloat(judge.c_str(), jval)) {
if (!isfloat(team.c_str(), tval)) {
wrong_answer("Expected float, got: %s", team.c_str());
}
if(!(fabs(jval - tval) <= float_abs_tol) &&
!(fabs(jval - tval) <= float_rel_tol*fabs(jval))) {
wrong_answer("Too large difference.\n Judge: %s\n Team: %s\n Difference: %le\n (abs tol %le rel tol %le)",
judge.c_str(), team.c_str(), jval-tval, float_abs_tol, float_rel_tol);
}
} else if (case_sensitive) {
if (strcmp(judge.c_str(), team.c_str()) != 0) {
wrong_answer("String tokens mismatch\nJudge: \"%s\"\nTeam: \"%s\"", judge.c_str(), team.c_str());
}
} else {
if(strcasecmp(judge.c_str(), team.c_str()) != 0) {
wrong_answer("String tokens mismatch\nJudge: \"%s\"\nTeam: \"%s\"", judge.c_str(), team.c_str());
}
}
judgeans_pos += judge.length();
con_pos += team.length();
}
if (conans >> team) {
wrong_answer("Trailing output:\n%s", team.c_str());
}
ac();
}