码迷,mamicode.com
首页 > 其他好文 > 详细

对拍呐

时间:2020-01-21 18:08:03      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:bre   数据   clock   cst   long   print   文件   sys   system   

对拍

(这个主要是存一下对拍程序)今天用了对拍调,真香。

#include<cstdio>
#include<cstdlib>
#include<ctime>
int main()
{   long s,t;
    while(1){
        system("cls");
        do{
            system("data.exe > try.in"); //data是数据生成程序
            s=clock();
            system("a.exe < try.in > try1.out");  //a是要交的程序
            t=clock();
            system("b.exe < try.in > try2.out");  //b是正确的程序
            if(system("fc try1.out try2.out > nul"))
                break;
            else printf("AC time: %ldms\n",t-s);
        }while(1);
        printf("WA time: %ldms\n",t-s);  //运行时间 
        system("fc try1.out try2.out");
        system("pause>nul");
    }
    return 0;
}

来源于互联网,好像要把所有的东西放在一个文件夹中呢。

对拍呐

标签:bre   数据   clock   cst   long   print   文件   sys   system   

原文地址:https://www.cnblogs.com/clockwhite/p/12222525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!