I've noticed that in the tutorial the author mentioned that there exist an linear time solution, but I don't know what the solution is ...
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 3993 |
2 | jiangly | 3743 |
3 | orzdevinwang | 3707 |
4 | Radewoosh | 3627 |
5 | jqdai0815 | 3620 |
6 | Benq | 3564 |
7 | Kevin114514 | 3443 |
8 | ksun48 | 3434 |
9 | Rewinding | 3397 |
10 | Um_nik | 3396 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
I've noticed that in the tutorial the author mentioned that there exist an linear time solution, but I don't know what the solution is ...
Название |
---|
Find all the biconnected components, let there be $$$C$$$ such components.
Let $$$G$$$ be a graph with $$$C$$$ nodes. For some color $$$c$$$ let the indices of edges with such color be $$$c_1, c_2, \ldots, c_x$$$, let's add edge $$$c_i-c_{i-1}$$$ for every $$$x \geq i>1$$$ to $$$G$$$. If we do this for all colors we will have some connected components in $$$G$$$. It can be proven that for every connected component in $$$G$$$: we can have all the colors (in this component) in an optimal tree iff this component has a cycle or contains a vertex which corresponds to a bridge BCC in the original graph.
All of this can be done in linear time.