# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 159 |
4 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 150 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
Name |
---|
Your HLD looks wrong. You have
and later
So if the
adj[v][0] = p
for every node, the complexity blows up. Adding the following code fixes it:You implemented it slightly differently in the other submission, so it doesn't have the same problem, but it still looks a bit wrong. The
tot
variable indfs_tot
looks like is supposed to be the size of the subtree, but then you dotot = cr;
which makes no sense.But I have also done ~~~~~ if(u == p) continue; ~~~~~
So, If any node has atleast 1 child and
adj[v][0] = p
, then it will surely be swapped with adj[v][1], and then loop continues, and hence adj[v][0] will never be p except for leaves. So, Can you please elaborate more?And Sorry for the confusion, But in the second submission I used a different idea for forming the heavy paths, which is I am using length of heavy path down the node instead of subtree size of that node.
Thank you very much, I used what you told and it worked.
Ignore my above comment understand the mistake now. Again thank you!!!
Auto comment: topic has been updated by shashankagrawal (previous revision, new revision, compare).