Please subscribe to the official Codeforces channel in Telegram via the link https://t.me/codeforces_official. ×

phantom11's blog

By phantom11, 13 years ago, In English
Can anyone explain how and when to use the generator in the contest while hacking??
  • Vote: I like it
  • -17
  • Vote: I do not like it

13 years ago, # |
  Vote: I like it +1 Vote: I do not like it
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 years ago, # |
  Vote: I like it 0 Vote: I do not like it
ok..and do i have to download a generator???
  • 13 years ago, # ^ |
      Vote: I like it +7 Vote: I do not like it
    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 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Thanks a lot.....nice answer....Just 1 more question ... I needto write the generator in  a note pad ..right???
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    You can write it, on what you want, but when you send, it must compile in codeforces and output correct test.
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
ok. thanks guys