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.me/submissions/tanvir942316
→ Reply
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 3993 |
2 | jiangly | 3743 |
3 | orzdevinwang | 3707 |
4 | Radewoosh | 3627 |
5 | jqdai0815 | 3620 |
6 | Benq | 3564 |
7 | Kevin114514 | 3443 |
8 | ksun48 | 3434 |
9 | Rewinding | 3397 |
10 | Um_nik | 3396 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 155 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
10 | nor | 152 |
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.me/submissions/tanvir942316
→ Reply
Название |
---|
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_map
which gives constant time insertion and accessing on average ($$$O(n)$$$ in worst case). Your solution with unordered_map 173282698.But it is possible to blow up unordered_map (to make access and insertion of order $$$O(n)$$$) by specific type of input. To prevent it you can use custom hash function.
Read this for more details: Blowing up unordered_map, and how to stop getting hacked on it
P.S: See how many people got hacked (see hacks made by beethoven97) because they used
std::unordered_map
.