Блог пользователя sunrise321

Автор sunrise321, история, 5 лет назад, По-английски

Link to my source code https://ideone.com/q83VDg. I am getting TLE in test case 14 but my complexity if O(N*200). Please take a look and tell me if I am wrong.Link to the problem http://mirror.codeforces.com/contest/1335/problem/E2

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
5 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Map operations are not constant, they are logarithmic. It may not seem as significant, but N*200*lgN will surely get TLE.