After using Binary search in Problem C(Round 1574) I am getting TLE I don't know where it is getting out of bounds, please help
code link- https://codeforces.net/contest/1574/submission/181236065
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
After using Binary search in Problem C(Round 1574) I am getting TLE I don't know where it is getting out of bounds, please help
code link- https://codeforces.net/contest/1574/submission/181236065
Название |
---|
Your code seems fine speed-wise (it might give Wrong Answer), it's probably slow I/O.
You can add this at the beginning of your code for faster IO.
Just be careful that if you use this, you should stick with cin/cout and not mix it with scanf/print/puts since they use different buffers and the order read/written will be all mixed as well.
Thank you so much You are a saviour, it worked
That's why I love CP everytime I get to learn something new and amazing community of people ready to help
Thank you so much!! This also helped me. :)
Use C++20 instead of C++14 and Fast I/O
are you saying that if one uses C++20 he doesn't need to add these?
If yes can you show some documentation?
It seems like there's no difference at all. Submission link with copypasted code of op, but with C++20 enabled: 181341327
No but C++20 is comparatively faster than C++14