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

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

On a recent contest, i submitted a problem for many times but it shows runtime error. I have checked it in many online g++ compiler. It runs well but codeforces shows runtime error verdict. .

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

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

For (it = s.begin(); it != s.end(); it++)

If ... s.erase(it)

Here is a mistake. you are not allowed to change the size of your set in FOR loop. be careful and use debugger