Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

Блог пользователя Yucy

Автор Yucy, история, 3 года назад, По-английски

Generating test cases is no stranger with cp-er, especially in offline competition (such as Olympic...)

Today I also have one question about this skill. Specifically, I want to ask about bat file

When I want to generate and compare brute forces code and AC code, I create one bat file and put these commands and run by cmd

generator.exe

full.exe

slow.exe

fc /w output.out output.txt, where output.out is output of AC code and output.txt is output of brute forces code.

I have some questions about this bat file:

  1. Do you have any commands that instead of running this file bat one by one by cmd (then it will run the above 3 exe files and compare the answers once time), I can run any number of times I want then it will compare these codes many times for me ?

  2. If yes, how can I stop when two codes have different answers, as I want to see and take the test case that I have the wrong answer.

  3. With you, do you have a more convenient way to compare brute and full code ? Can you share it with me and everyone ?

Thanks for helps

  • Проголосовать: нравится
  • -2
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +4 Проголосовать: не нравится

You can use for loop in bash for running multiple files in command lines like let's say your file name.is abc$var$ here on var you can put number. Once before hashcode of past year i guess errichto(Kamil) has made a video there you can see it.

»
3 года назад, # |
  Проголосовать: нравится +10 Проголосовать: не нравится

You could try doing something like this.

@echo off
:loop
generator.exe
full.exe
slow.exe
fc /w output.out output.txt
IF %ERRORLEVEL% NEQ 0 EXIT 1
goto loop