Please read the new rule regarding the restriction on the use of AI tools. ×

rm-rf's blog

By rm-rf, 9 months ago, In English

Hi!

For this problem, the time complexity of my implementation is around O(q * k * log(n)), but it got TLE. So I wonder what would be the intended time complexity for this problem?

Thanks!

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

»
9 months ago, # |
  Vote: I like it 0 Vote: I do not like it

.

»
9 months ago, # |
  Vote: I like it 0 Vote: I do not like it

I think it will be the $$$O(Q\cdot\sqrt{N}+\sum{K})$$$, so it musb be needed $$$O(1)$$$ update each point update and $$$O(\sqrt{N})$$$ in every tree path (IN MY OPINIOON)