Изменения рейтингов за последние раунды временно удалены. Скоро они будут возвращены. ×

Блог пользователя bucky21

Автор bucky21, история, 3 года назад, По-английски

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!

  • Проголосовать: нравится
  • -15
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by bucky21 (previous revision, new revision, compare).

»
3 года назад, # |
  Проголосовать: нравится +9 Проголосовать: не нравится

Lookup is not necessarily O(1) in unordered map. Read This

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Why make such blog? If you want to use a DS, first read up on it. Search for articles on CF, other places as well. In this case, read neal's blog on unordered_map. https://codeforces.com/blog/entry/62393. Copy the implementation at the bottom slap it in there. Understand how to use it. Understand why unordered_map can be so slow. Understand how to use the custom hash.