shivanshsingh9670's blog

By shivanshsingh9670, history, 14 months ago, In English

I was solving a question 1367C.

But my code is failing for certain test cases and I am not able to figure out which test case is it failing for.

Can someone just help me out please.

Submission Link

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
14 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Watch this video by Errichto. It will give you insights into stress-testing.

Check out AC submissions to the problem — you can see others' submissions and apply filters as well. Pair one with your submission and write a suitable generator (with small test-cases) and you should be able to find some test-case where your code differs in output.

Note that you do not need to have a Linux system for this, you can actually just convert both, your code, and the AC one, into functions and pass them the inputs (while not changing them inside the functions), and compare the outputs. As for generators, you can use rand/srand as shown in the video (or even some exhaustive generator covering all test-cases with n <= 5 for example). Hope this helps!