This repository was archived by the owner on Mar 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjudge.js
177 lines (148 loc) · 4.73 KB
/
judge.js
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
const core = require('@actions/core');
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const fs = require('fs');
const ResultEnum = {
WRONG_ANSWER: -1,
CPU_TIME_LIMIT_EXCEEDED: 1,
REAL_TIME_LIMIT_EXCEEDED: 2,
MEMORY_LIMIT_EXCEEDED: 3,
RUNTIME_ERROR: 4,
SYSTEM_ERROR: 5,
};
class Judger {
constructor(prob, exe, env){
this.problem = prob;
this.executable = exe;
this.env = env;
}
buildExecArgs(exe, inf, ouf, { used_time }) {
// console.log(this.problem)
const ret = [];
ret.push(`--exe_path=${exe}`,
`--input_path=${inf}`,
`--output_path=${ouf}`,
`--error_path=${ouf}`,
`--max_output_size=${134217728}`,
);
if(this.problem.conf.time_limit) {
let timeLimit = this.problem.conf.time_limit;
if(this.problem.conf.timing_mode === 'total') {
timeLimit -= used_time;
}
if(timeLimit < 0) timeLimit = 0;
ret.push(`--max_real_time=${timeLimit}`);
}
if(this.problem.conf.space_limit){
ret.push(`--max_memory=${this.problem.conf.space_limit * 1048576}`);
}
return ret;
}
diff(istr, astr){
[istr,astr] = [istr.trim(),astr.trim()];
let ln = 1, col = 1;
for(const i in istr){
if(i >= astr.length) {
return 'Unexpected EOF while reading answer.';
}
if(istr[i] !== astr[i]) {
return `Expected ${escape(astr[i])} but found ${escape(istr[i])} at ${ln}:${col}`;
}
if(istr[i] === '\n') [ln,col] = [ln+1,1];
else col++;
}
if(istr.length != astr.length) {
return 'Unexpected EOF while reading output.';
}
return null;
}
async testCase(i, e, stats) {
console.log('Using test case:', e);
const info = {
id: i,
case: e,
};
const outf = `${this.problem.baseDir}/outFile.out`;
const inf = `${this.problem.baseDir}/testcase/${e.inFile}`;
const ansf = `${this.problem.baseDir}/testcase/${e.ansFile}`;
const args = this.buildExecArgs(this.executable, inf, outf, stats);
let result;
try {
const scr = `sudo ${__dirname}/libjudger.so ${args.join(' ')}`;
result = JSON.parse((await exec(scr)).stdout.trim());
} catch (e) {
return {
...info,
result: ResultEnum.SYSTEM_ERROR,
error_message: e
};
}
if(result.result != 0) {
return {
...info,
result: result.result,
detail: result,
};
}
const ansC = fs.readFileSync(ansf).toString();
const outC = fs.readFileSync(outf).toString();
const diffResult = this.diff(ansC, outC);
if(diffResult) {
result.result = ResultEnum.WRONG_ANSWER;
return {
...info,
result: ResultEnum.WRONG_ANSWER,
detail: result,
error_message: diffResult,
};
}
return {
...info,
result: 0,
detail: result,
};
}
async testAll() {
const caseKeys = Object.keys(this.problem.cases);
caseKeys.sort((a, b) => {
const ia = parseInt(a.match(/\d+/g).join(''));
const ib = parseInt(b.match(/\d+/g).join(''));
return ia - ib;
});
let [total, good] = [0, 0];
let cases = [];
let stats = {
used_time: 0
};
for(const i of caseKeys) {
core.startGroup(`Test Case ${i}`);
let ret;
try {
ret = await this.testCase(i, this.problem.cases[i], stats);
if(ret.detail) {
stats.used_time += (ret.detail.real_time || 0);
}
} catch (e) {
ret = {
id: i,
case: this.problem.cases[i],
result: ResultEnum.SYSTEM_ERROR,
error_message: e,
};
}
total++, good += (ret.result == 0);
cases.push(ret);
core.endGroup();
}
return {
result: total === good? 'Accepted': 'Unaccepted',
total: total,
accepted: good,
cases,
env: this.env,
stats,
};
}
}
Judger.ResultEnum = ResultEnum;
module.exports = Judger;