https://www.interviewbit.com/problems/max-edge-queries/
Someone please suggest a idea or share some resource that will help me to solve this problem.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
https://www.interviewbit.com/problems/max-edge-queries/
Someone please suggest a idea or share some resource that will help me to solve this problem.
Name |
---|
You need standart LCA. For each vertex $$$a$$$ you can calculate $$$find(a, count)$$$ — the maximum weigth of $$$count$$$ edges if you go from $$$a$$$ up to the root. So if you know that $$$LCA(x, y) = z$$$ and $$$dist(x, z) = l, dist(y, z) = r$$$, the answer is $$$max(find(x, l), find(y, r))$$$.
you can solve queries offline using some precomputation
first calculate $$$LCA(u, v) = L$$$ for each $$$query$$$
calculate the max edge between each $$$(L, u)$$$ and $$$(L, v)$$$ pair you can do this in $$$O(n + q*log(n))$$$ using segment tree best i know, may be there is a better way to this
after doing above two steps you know the $$$ans$$$ for $$$(L, u)$$$ and $$$(L, v)$$$
$$$ans$$$ for query $$$(u, v)$$$ is $$$max(ans(L, u), ans(L, v))$$$
resources LCA segment tree
Precompute binary lifting, and compute like a sparse table on the tree, for each node U, calculate the maximal edge 2^i up, then for each query compute the LCA, and compute the maximum from u -> LCA and from v -> LCA