Can someone tell me how to solve this problem ALIENINV
Thanks!
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 166 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
Name |
---|
When you ask for help with a problem, say what you already came up with (more instructions here).
A good first step might be to compute the answer for every leaf. Take a leaf $$$L$$$ and root the tree there. For every other vertex $$$V$$$, it will be removed before $$$L$$$ if and only if the whole subtree of $$$V$$$ has values smaller than the value in $$$L$$$. Let $$$s[V]$$$ be the size of the subtree of $$$V$$$. Then, we want $$$L$$$ to have the smallest value among $$$s[V]+1$$$ vertices (that subtree and vertex $$$L$$$ itself), so the probability of $$$L$$$ being the smallest is $$$\frac{1}{s[V]+1}$$$. Since this is the probability of $$$V$$$ being before $$$L$$$, you can sum this up to get the expected value of the place of $$$L$$$ — because with that probability the place of $$$L$$$ is increased by $$$1$$$.
This is $$$O(N)$$$ solution to find an answer for a single leaf. I don't know how hard it is to apply it for non-leaf vertices. Try it and let us know.
Thanks a lot for your help. I'll keep in mind about the instructions next time. And do you mean $$$L$$$ should have the largest value than the whole subtree of $$$V$$$? or am I missing something?
Thanks!
Yup, the largest.