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

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

Hi everyone, I was solving the problem from the recently ended contest May Circuits! https://www.hackerearth.com/may-circuits/algorithm/make-n00b_land-great-again-circuits/

But I faced a really strange problem! Here my AC submission: https://ideone.com/QxhGT6


// ----- int hey = update2(l, r, x, (v == -1 ? -1 : t2[v].l), tl, tm); t2[now].l = hey; hey = update2(l, r, x, (v == -1 ? -1 : t2[v].r), tm + 1, tr); t2[now].r = hey; // ----- /* t2[now].l = update2(l, r, x, (v == -1 ? -1 : t2[v].l), tl, tm); t2[now].r = update2(l, r, x, (v == -1 ? -1 : t2[v].r), tm + 1, tr);*/

But if replace the first part with the second, even sample isn't working! I really need your help.

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

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

My guess is that in this line:

t2[now].l = update2(l, r, x, (v == -1 ? -1 : t2[v].l), tl, tm);

the order of evaluation is the following:

auto& tmp = t2[now];
auto val = update2(l, r, x, (v == -1 ? -1 : t2[v].l), tl, tm);
tmp.l = val;

Because update2 function adds elements to the vector t2, reallocation happens and tmp no longer points to a valid location.

»
8 лет назад, # |
Rev. 2   Проголосовать: нравится +10 Проголосовать: не нравится
http://acm.math.spbu.ru/~kunyavskiy/cpp/sol16.cpp
http://acm.math.spbu.ru/~kunyavskiy/cpp/