小技巧—對拍
對拍就是對拍啦,沒什麼好說的。
直接放模闆吧。
網上大多數的對拍模闆都是用bat寫的。什麼鬼看不懂我菜。
是以拿CPP寫一發。
就當練練
#include<bits/stdc++.h>
using namespace std;
int main()
{
for(int i=1;i<=20;i++)
{
system("./data.exe");
double beg=clock();
system("./test.exe");
double end=clock();
system("./vio.exe");
if(system("diff vio.out test.out"))
{
printf("WA on testdata#%d\n",i);
return 0;
}
else
printf("AC on testdata#%d Time:%.2lf\n",i,end-beg);
}
return 0;
}