对拍

对拍

九月 01, 2021

对拍

随机数生成器

1
2
3
4
5
6
7
#include<bits/stdc++.h>
using namespace std;
int main(){
srand(time(NULL));//先加上这个
int a=rand();//rand范围:0~32768 返回int,所以两个相乘可能会爆
// 可以进行取模操作
}

对拍

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <bits/stdc++.h>
using namespace std;
int main(){
while(1){
system("data.exe");//随机数
system("baoli.exe");//暴力
double a=clock();
system("ans.exe");
double b=clock();//返回毫秒
if(b-a>1000) printf("TLE\n"),system("pause");//system("pause")输入任意键继续
if(system("fc baoli.out candy.out")) system("pause");//当两者不一样时
}
return 0;
}