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

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

Hey, I am encountering difficulties with this problem: http://mirror.codeforces.com/contest/919/problem/D from yesterday contest. This is my code commented. Can anybody tell me what is wrong with my logic? My first failed test case is #6, I count more than I should. code : http://mirror.codeforces.com/contest/919/submission/34816679

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

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

I haven't gone through all of the code yet, however your array C only has size 33.

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Yeah, that was the only mistake, I didn't notice that, but I didn't expect to get wrong answer instead of MLE or runtime error. Thanks!