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

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

2036E - Reverse the Rivers

Can anybody tell, what i m doing wrong? Here is my Submission: 290106596

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

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

Auto comment: topic has been updated by hrishabhpatel09 (previous revision, new revision, compare).

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

int ei = n-1; while(req-- && si<=ei){ int a,c; char b; cin>>a>>b>>c; I think, because of the condition in the while loop, si <= ei, your loop is prematurely being terminated without even taking the full input. Hence, remove this condition.