№ | Пользователь | Рейтинг |
---|---|---|
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 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Название |
---|
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).