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
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 155 |
7 | djm03178 | 151 |
7 | adamant | 151 |
9 | luogu_official | 150 |
10 | awoo | 147 |
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
Name |
---|
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
.