duckladydinh's blog

By duckladydinh, history, 6 years ago, In English

Hallo Codeforces Hackers,

could you tell me what can possibly go wrong with the following submission? I even changed all ints to long long just in case, but I cannot seem to find out why. It passed all except for test 4_hand_3, what can be in that test? My solution looks the same as that in the tutorial (though I do not know Japanese).

Submission: https://beta.atcoder.jp/contests/abc110/submissions/3261324

Thank you very much.

  • Vote: I like it
  • +3
  • Vote: I do not like it

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I was facing a problem which got resolved once I increased the size of the array. You can see my submission here.

You can also try increasing the sum of your arrays as it is possible for it to be 2 x 10^5 in the worst case. :)

  • »
    »
    6 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Even though I did prove that it should be around 10^5 + 30, but yes I did increase the size but not in this case :D

    Thank you anyway

»
6 years ago, # |
Rev. 2   Vote: I like it +18 Vote: I do not like it

You're not initializing inv[0] to 1, you will use it in the case of N = 1. Your code became AC with this change only: submission link.