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

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

Can anyone expain to me why I am getting Memory Limit Exceeded in this problem:- https://mirror.codeforces.com/contest/29/problem/D. Here is the link to my submission:- https://mirror.codeforces.com/contest/29/submission/111265225.

I just computed the path between each pair of nodes (by inserting 1 at the front and 1 at the back of the leaf list) using lca technique. But getting MLE. Any help? Thanks for devoting your time in reading this.

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

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

if you want to precompute $$$2^{k th}$$$ ancestors for lca, never run dfs with {node = 1, parent = 0} (you will have 0 as a parent of 1 and may have undefined behaviour), run with {node = 1, parent = 1} instead.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Thanks bro a lot. I got rid of the MLE thing.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    The mistake was different. I was computing the lca wrongly.But anyways I will keep your adivice in mind.Thanks.