Mr.Whitebird's blog

By Mr.Whitebird, history, 2 weeks ago, In English

The submission is here: 265738238

I do not think that I use significant stack memory here, it is mostly heap memory. Also I have cloned to the mashup to test with 2GB memory limits and got exactly the same result.

The code is pretty clear in my opinion but I will be happy to clarify if asked.

Thanks for your interest.

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

»
2 weeks ago, # |
Rev. 2   Vote: I like it +2 Vote: I do not like it

You seem to have WA on a testcase, because putting the following if statement in the middle makes the code not RE but WA.

if (l < 1 || l > n || r < 1 || r > n || r < l) {
  return;
}

So, the RE is probably due to a wrong value of last.

»
2 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by Mr.Whitebird (previous revision, new revision, compare).

»
2 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

lol