Same code got TLE in GNU C++11 and got AC in GNU C++17. Can someone please tell me the reason behind it?
TLE (C++11): http://codeforces.me/contest/1520/submission/115347126
AC (C++17): http://codeforces.me/contest/1520/submission/115347176
Thanks!
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 166 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
Same code got TLE in GNU C++11 and got AC in GNU C++17. Can someone please tell me the reason behind it?
TLE (C++11): http://codeforces.me/contest/1520/submission/115347126
AC (C++17): http://codeforces.me/contest/1520/submission/115347176
Thanks!
Name |
---|
Running the same code in custom invocation and printing
v.size()
gives81
in C++17 and9090927
in C++11, so you're iterating over significantly more values when submitting under C++11 per test case. As for why, there appears to be a difference in the implementation ofpow
, ask
takes on the values1, 11, 111
in C++17 and1, 11, 110
in C++11. Not sure why that happens though, I think the actual implementation ofpow
is architecture dependent. In my opinion, it's easier to just not involve floating point computation if possible.