Hyperlink_Blocked's blog

By Hyperlink_Blocked, history, 5 years ago, In English

I was wondering why the exact same code

https://codeforces.com/contest/833/submission/53432006

gets a TLE on test 8 when submitted in C11 but

https://codeforces.com/contest/833/submission/53431981

gets AC when submitted in G++14. Does the C++ compiler optimize the operations or something? If I'm not wrong the complexity of this solution should be O(n log max(a*b)) (I assumed the complexity of cuberoot is log n, I don't actually know what it is).

Full text and comments »

  • Vote: I like it
  • +10
  • Vote: I do not like it