Here are TLE code and AC code of the problem 504D-Misha and XOR, the difference between them is only the condition of the for loop, but i<maxn && m>=0
is a stronger condition. Does anyone have idea about what happened? Thanks a lot.
# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 159 |
4 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 151 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
Here are TLE code and AC code of the problem 504D-Misha and XOR, the difference between them is only the condition of the for loop, but i<maxn && m>=0
is a stronger condition. Does anyone have idea about what happened? Thanks a lot.
Name |
---|
I've added
inline
and it's Accepted with the condition 11191452It's really interesting to know why this happened!
And then I changed
m>=0
tom>=-1
got Accepted... 11191443What's the difference between inline function and simple function? I used TLE code's loop condition and added inline — AC.
This is even more weird!
Here I added a variable x, and made it equal to m, it got TLE.
Here I made it equal to m+1 before the loop, and equal to m in the loop, it got AC!
Here I made it equal to m before the loop, and don't change it in the loop, it got AC!
Maybe it is a bug in the compiler optimizer? I hope someone figures that out!