需要编写spj.cpp文件,目前也支持Lemon,Cena,testlib格式的插件。
编写COGS评测插件,要求spj的返回值(0到100之间整数)表示该测试点得分。
所有判定的执行都是自动的。
例如,对题目BPlusA使用COGS评测插件:
// C风格
#include <stdio.h>
int main(int argc, char* argv[])
{
FILE *fin = fopen(argv[1],"r");//题目的读入文件
FILE *fout = fopen(argv[2],"r");//选手的输出文件
FILE *fans = fopen(argv[3],"r");//题目的输出文件
int n, a, b;
fscanf(fin, "%d", &n);
fscanf(fout, "%d%d", &a, &b);
if(a + b != n)
return 0;
fclose(fin);
fclose(fout);
fclose(fans);
return 100;
}
// C++风格 #include <fstream>using namespace std; int main(int argc, char* argv[]) { ifstream fin(argv[1]);//题目的读入文件 ifstream fout(argv[2]);//选手的输出文件 ifstream fans(argv[3]);//题目的输出文件 int n, a, b; fin >> n; fout >> a >> b; if(a + b != n) return 0; fin.close(); fout.close(); fans.close(); return 100; }
| 关于 编写评测插件 的讨论 | ||||
|---|---|---|---|---|
|
|
第一
2024-09-12 19:43:44
1楼
|
|||