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://mirror.codeforces.com/contest/1574/submission/181236065
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3741 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3489 |
7 | Radewoosh | 3483 |
8 | Kevin114514 | 3442 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
2 | atcoder_official | 162 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | nor | 150 |
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://mirror.codeforces.com/contest/1574/submission/181236065
Name |
---|
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