WIN和LIN环境下对拍程序

LIN:

while true;do

./gen//数据生成
./bf//暴力
./a//正解

if diff ./bf.out ./a.out ; then
continue
else break
fi

done

WIN:

loop
gen.exe > input.in
bf.exe < input.in > bf.out
yes.exe < input.in > yes.out
fc bf.out yes.out 
if not errorlevel 1 goto loop
pause
end 

生成一个.bat就好了

posted @ 2017-09-06 22:19  Drinkwater_cnyali  阅读(137)  评论(0编辑  收藏  举报