Gaurav3478's blog

By Gaurav3478, history, 2 years ago, In English

For the recent contest (Codeforces Round #788 (Div. 2)), I was practicing submitting problem C after the contest. I got TLE on submitting the below code: https://mirror.codeforces.com/contest/1670/submission/156232289

However, after I changed the vectors to become global (as you can see in the submission below), the code got accepted: https://mirror.codeforces.com/contest/1670/submission/156232089

Can anyone explain why? I am guessing it is because of too much memory usage, but I am not sure and would appreciate any insights. Moreover, how can I know when to keep vectors global in the future?

Thank you!

Full text and comments »

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