| # | User | Rating |
|---|---|---|
| 1 | Benq | 3857 |
| 2 | jiangly | 3810 |
| 3 | maroonrk | 3534 |
| 4 | tourist | 3528 |
| 5 | Kevin114514 | 3510 |
| 6 | turmax | 3411 |
| 7 | Um_nik | 3387 |
| 8 | Radewoosh | 3367 |
| 9 | heuristica | 3322 |
| 10 | strapple | 3317 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | maspy | 150 |
| 3 | nik_exists | 146 |
| 4 | Um_nik | 145 |
| 5 | Errichto | 139 |
| 6 | adamant | 136 |
| 7 | maroonrk | 134 |
| 8 | DNR | 132 |
| 9 | AmShZ | 131 |
| 10 | Dominater069 | 129 |
| Name |
|---|



Auto comment: topic has been updated by fsociety00 (previous revision, new revision, compare).
You may try a segment tree on the euler tour.You need to understand the euler tour/rmq algorithm for lca first (it can be found here https://en.wikipedia.org/wiki/Lowest_common_ancestor ).Then,build a segment tree holding the maximum value of
lev[node1]-2*lev[node2]+lev[node3]where node1 and node3 are at first occurrence,both are white and node2 can be found between them(and is not neccesarily white)-lev[x]denotes the level of node x.Of course,you need to maintain some helping values (e.g maximum oflev[node1]-2*lev[node2]) but I find this a good segment tree exercise.Finally, you get O(logn) per update.Can you please Elaborate on how to Maintain the Structure. A submission Code would be Extremely Helpful.
This function 'merges' 2 segment nodes(you now the answers for
[a;b]inB,for[b+1;c]inCand you get them for[a,c]inA.I'm sorry it isn't very explicit, but i'll try to explain which is every part of the structure.The rest of the segment tree and building euler tour is more of a prequisite and I would PM if requested, but I find the most important part here.As far as I know, this doesn't actually work because in this problem, edge lengths are allowed to be negative, so the property that the LCA is the lowest-depth node in the range doesn't hold.