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

Автор barats, история, 3 года назад, По-английски

I can't understand why my code is giving the memory limit exceeded on test case 2.

Here us the problem 1592C - Bakry and Partitioning

here is my code 130824440. Any suggestions?

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

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

.clear() clears the entire vector, leaving it at size 0. So you should resize each vector to $$$n+1$$$ or something before using it.