Candidate_noob's blog

By Candidate_noob, history, 3 years ago, In English

Hey all, Hope you are doing great.

Yesterday, I participated in the Global Round 12 and I had a hard time implementing problem D, but I managed to finish it in time. When I submit, Got TLE on test 2. With only two minutes remaining, I panicked and couldn't figure out the bug. Afterward, I go through the code, and guess what, while precomputation, I accidentally used N(= 3e5 + 5) instead of given n.

Due to this, I missed becoming Blue :(

So, the lesson of the story is "Always use MAXN instead of N" for setting max value.

If any of you have similar experiences, please consider sharing. It will be helpful in avoiding those mistakes in the future.

  • Vote: I like it
  • -32
  • Vote: I do not like it

| Write comment?
»
3 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Welcome to the world of CP!

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

For D yesterday, I submitted mxN = 10 instead of 3e5 because I was debugging.

Lesson learnt : Always change constraints after debugging!

»
3 years ago, # |
  Vote: I like it +3 Vote: I do not like it

There are so many of this — using long long instead of int, having stdio set to false when you want to use both scanf and cin... The only way to improve is to do more problems, encounter them, and learn from them. Pain is the best teacher :)