daiict218's blog

By daiict218, 9 years ago, In English

Hi, My program is giving MLE on the test case 22. I am taking a matrix of 5000*5000.

my submission is : http://codeforces.com/contest/467/submission/11321869 Any help would be appreciated.

Thanks in advance.

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
9 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

There is the rule for the memory. If you take one place i mean one for ex:

int a; it takes 4 bytes

long long int a; takes 8 bytes

Your code had (5000*5000*8)/1024/1024 into megabytes is 190 its just your one two dimentional array we don't count another thing there.