How to solve this kattis problem? It is a multi-source but not once, one by one. You should count the number of vertices with the distance at least k after each source is added. Restarting dijkstra every time is not enough.
Thanks.
# | 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 |
How to solve this kattis problem? It is a multi-source but not once, one by one. You should count the number of vertices with the distance at least k after each source is added. Restarting dijkstra every time is not enough.
Thanks.
Name |
---|
Take advantage of K being small. Maybe incorporate into state somehow?
Define nodes based on two parameters (location, distance from alien base). Run a modified Dijkstra where you find the minimum input id of an alien base that can reach each node. This works because if two alien bases can both reach a town with the same distance D, then for all other nodes reachable from this node, the base with smaller id will always get there earlier.
Srry, I don't understand your solution. Can you describe little bit more about it? Or provide code if you have written it. Thanks.
https://ideone.com/ER1jNn
Thanks, I got it. By the way, isn't there more standard (closer to standard dijkstra) solution?