bucky21's blog

By bucky21, history, 3 years ago, In English

Hi All

I have been implementing the solution to the following problem. I first tried using Unordered Maps but the solution gave a TLE, however, when I submitted the same code using Ordered Maps, it got Accepted.

Problem Link: https://codeforces.com/contest/1234/problem/B2

Solution using Unordered Maps: https://codeforces.com/contest/1234/submission/104445196

Solution using Ordered Maps: https://codeforces.com/contest/1234/submission/104445219

The same problem was observed in the following question as well:

Problem Link: https://codeforces.com/contest/808/problem/D

Solution using Unordered Maps: https://codeforces.com/contest/808/submission/101908196

Solution using Ordered Maps: https://codeforces.com/contest/808/submission/101848962

In most of the theory, I went through, regarding Maps in CPP, it states that ordered maps are mostly slower than unordered maps as the lookup in unordered maps is O(1).

Does anyone have any clue as to what might be the coding error leading to such a deviation. Any help will be appreciated!

Thanks in advance!

Full text and comments »

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