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

Автор tanvir942316, история, 19 месяцев назад, По-английски

Why my solution of C is getting TLE. Can anyone tell me please? Isn't it supposed to pass?

Is this happening because of using map. Please help me. I have to know this.

https://codeforces.com/submissions/tanvir942316

→ Reply

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

»
19 месяцев назад, # |
Rev. 2   Проголосовать: нравится +4 Проголосовать: не нравится

Yes. Using map will make your solution $$$O(n \cdot log^2 n)$$$.

Putting $$$n = 10^6$$$, number of operations = $$$4 \times 10^8$$$. You can use std::unordered_mapwhich gives constant time insertion and accessing on average ($$$O(n)$$$ in worst case). Your solution with unordered_map 173282698.

More (Getting AC with std::map but TLE with std::unordered_map)