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

Автор xpact_chaos, история, 12 месяцев назад, По-английски

I am getting runtime Error on Test 3 while solving this problem 1831C - Copil Copac Draws Trees My submission was this https://codeforces.com/contest/1831/submission/207746010 Can someone plz point out my mistake??

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

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

memset sets every byte with the specified value, and int is a 4 byte value. So for instance, memset(mini, 250, sizeof(mini)); would set each element of the array as $$$-84215046$$$ instead of $$$250$$$. These values are used as indices later in your code, leading to out-of-bounds error.

Replace memset with a loop to initialize the array elements. That should fix it