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

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

This is my submission to the problem 557B.

The only computation intensive thing I do is sort an array which can have atmost 10^5 entries. This is supposed to take < 1s. But I get TLE error if the array size is 10^5. Why does this happen?

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

»
9 лет назад, # |
  Проголосовать: нравится +21 Проголосовать: не нравится
int a[n];
  for (int i = 0; i < 2*n; i++) {
    cin >> a[i];
  }

Looks like you have problems with array size :)

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

Why does the use of a wrongly-sized array cause TLE and not runtime error?

It once happened to me as well. 7833244