CSP(noip)中的简单对拍写法

2019-10-25 06:24:33来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

CSP(noip)中的简单对拍写法

以a+b为例

这是随机数据

#include<iostream>
#include<cstdio>
#include<ctime>
using namespace std;
int main(){
    freopen("rand.txt","w",stdout);
    int a,b;
    srand(time(0));
    a=rand()%10+1;b=rand()%10+1;
    cout<<a+b;
}
View Code

这是正解(假设它是正解!)

#include<iostream>
#include<cstdio>
#include<ctime>
using namespace std;
int main(){
    freopen("rand.txt","r",stdin);
    freopen("1.txt","w",stdout);
    int a,b;
    cin>>a>>b;
    cout<<a+b;
}
View Code

这是暴力(假设它是暴力)

#include<iostream>
#include<cstdio>
#include<ctime>
using namespace std;
int main(){
    freopen("rand.txt","r",stdin);
    freopen("2.txt","w",stdout);
    int a,b;
    cin>>a>>b;
    cout<<a+b;
}
View Code

最后就是对拍了

#include<bits/stdc++.h>
using namespace std;
int main(){
    while(1){
        system("rand.exe");
        system("1.exe");
        system("2.exe");
        if(system("fc 1.txt 2.txt"));
        while(1);
    }
}
View Code

 


原文链接:https://www.cnblogs.com/Larry-Zero/p/11700499.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:备战初赛错题记录

下一篇:【CSP-S膜你考】那23个路口