TrendBattles's blog

By TrendBattles, 3 months ago, In English

Hi guys, I've been introduced to dynamic connectivity for a long time, especially dsu rollback which can be operated in O(log n) for updating and asking the root. Now, I'm facing with a problem with the edges stricting to only attach i and i + 1 and since the time limit is tight, I may have to do in O(1) (I'd tried the above one but it didn't work).

I was introduced to using left right for this at the same time, however it comes to a problem that the range that I get when updating some edges nearby isn't just what I've expected.

For example, I have 5 nodes here:

If I use edge (3, 4), (4, 5), (1, 2) and (2, 3) accordingly then there exists a position u which left[u] != 1 or left[u] != 5.

Please let me know where I implement wrong or prove that it's impossible to optimize it into O(1) for both updating and getting the longest range that u is covered.

My implementation
  • Vote: I like it
  • +1
  • Vote: I do not like it

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

can anyone help me now please ?