Can anyone help me indentifying why my code is giving runtime error for this following code in Problem G: (https://codeforces.me/contest/1971/submission/260600724)
Edit: Got the issue and got AC but could not understand the reason
# | User | Rating |
---|---|---|
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 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | adamant | 157 |
6 | awoo | 157 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | djm03178 | 153 |
Can anyone help me indentifying why my code is giving runtime error for this following code in Problem G: (https://codeforces.me/contest/1971/submission/260600724)
Edit: Got the issue and got AC but could not understand the reason
Name |
---|
in sort, you should use
return a<b;
, but notreturn a<=b
, which give RTE or TLE or MLE or somethingelse except AC.Oh Nice, it got accepted. But why "return a <= b" gave the RTE error ?
https://en.cppreference.com/w/cpp/algorithm/sort
Just because the standard says so. There is no guarantee what will happen if you return less or equal.
Oh thanks. Went through the link provided. Still cannot figure out the exact reason for the runtime error. But still, thanks for helping.
Auto comment: topic has been updated by Fume (previous revision, new revision, compare).