55968842 The question (337D - Книга Зла) is on dp on trees. I cant find out why this code is TLEing. Any help would be appreciated.
# | 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 | atcoder_official | 160 |
5 | Um_nik | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 151 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
55968842 The question (337D - Книга Зла) is on dp on trees. I cant find out why this code is TLEing. Any help would be appreciated.
Name |
---|
Auto comment: topic has been updated by adityaaaaaaaaaaaaaaa (previous revision, new revision, compare).
Auto comment: topic has been updated by adityaaaaaaaaaaaaaaa (previous revision, new revision, compare).
Your
dfs2
method is $$$N^2$$$ complexity. Think about a tree which is one root node connected to 100k leaf nodes. Then for each leaf node you loop over the parent's children again, which is 100k. So that's 100k^2.Thanks!