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

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

Hi this is my submission https://mirror.codeforces.com/contest/538/submission/55094041 code for 538C but it gets WA for test case 22. Are there any points that I have not mentioned in my code? Thanks in advance.

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

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

I think you forgot to calculate what was the maximum height he could start with. I added this line to your code:

maxs=max(maxs,(ll)(a[0].first+a[0].second-1));

and it worked on test 22.