Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

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

Автор phantom11, 13 лет назад, По-английски
Can anyone explain how and when to use the generator in the contest while hacking??
  • Проголосовать: нравится
  • -17
  • Проголосовать: не нравится

13 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится
About "when" - I dare to suppose that generator is useful when you think than necessary test-case would be too big or complicated to write it manually.
13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
ok..and do i have to download a generator???
  • 13 лет назад, # ^ |
      Проголосовать: нравится +7 Проголосовать: не нравится
    No. You should write a generator!

    This is the generator I wrote yesterday (for the problem B of div.2): http://pastebin.com/raw.php?i=zNjfMadf

    When you have the generator, you click "Hack!" and then you upload the file. The system runs your program that must generate a valid input (don't forget newline at the end). The output you have written to stdout will be redirected to defender's stdin.
13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
Thanks a lot.....nice answer....Just 1 more question ... I needto write the generator in  a note pad ..right???
  • 13 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    You can write it, on what you want, but when you send, it must compile in codeforces and output correct test.
13 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
ok. thanks guys