How to solve 1437D - Minimal Height Tree if the question asked to count the number of valid trees?
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3741 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3489 |
7 | Radewoosh | 3483 |
8 | Kevin114514 | 3443 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 158 |
5 | -is-this-fft- | 158 |
7 | awoo | 156 |
8 | djm03178 | 155 |
9 | TheScrasse | 154 |
10 | Dominater069 | 153 |
How to solve 1437D - Minimal Height Tree if the question asked to count the number of valid trees?
Name |
---|
This could have been solved using a dp state (i,curr_parent), if the constraints were a bit less. (n<=3000)
That's actually pretty much good. I got it too. I was thinking if it's possible to solve with original constraints of the problem.