Guys my code is continuously getting TLE on Test case 6. Can someone pls help find the bug? link to my code : https://codeforces.net/contest/1354/submission/80872965
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 164 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 148 |
Guys my code is continuously getting TLE on Test case 6. Can someone pls help find the bug? link to my code : https://codeforces.net/contest/1354/submission/80872965
Name |
---|
I think this is due to the fact that maybe the time complexity of your code is nlog^2q. Question requires it to be nlogq.
Try using fast i/o. I have also used similar approach and just using fast i/o might do it.
I tried same approach with segment trees and it failed :(
Yes, fenwick tree/BIT is faster than segment tree due to segment tree operations having larger constant factor. This question does have n,q = 1e6, and even BIT passes with around ~ 1s.