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就好了