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.me/contest/1574/submission/181236065
| # | User | Rating |
|---|---|---|
| 1 | jiangly | 3810 |
| 2 | Benq | 3676 |
| 3 | Kevin114514 | 3655 |
| 4 | maroonrk | 3463 |
| 5 | strapple | 3390 |
| 6 | Um_nik | 3387 |
| 7 | tourist | 3384 |
| 8 | heuristica | 3322 |
| 9 | turmax | 3319 |
| 10 | jiangbowen | 3291 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 156 |
| 2 | nik_exists | 150 |
| 2 | maspy | 150 |
| 4 | Um_nik | 144 |
| 5 | Errichto | 139 |
| 6 | AmShZ | 138 |
| 7 | adamant | 137 |
| 8 | maroonrk | 132 |
| 8 | BledDest | 132 |
| 10 | qwexd | 129 |
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.me/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