hello, in this sum question I have been trying to implement a modified dijsktra but fail. I just want to know if modified dijsktra work here.
please don't give further hints
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
hello, in this sum question I have been trying to implement a modified dijsktra but fail. I just want to know if modified dijsktra work here.
please don't give further hints
Название |
---|
I am not sure what you mean by modified Dijkstra,
but I did solve it with Dijkstra.
thanks, i will try more .. modified dijsktra means it has slight modification .. okay sorry if it confuses
Good luck :)
so, earlier I was trying to just use some kind of hash to track the weights. but then I realised, I could just stotre the nodes of shortest path and take 2 consecutive nodes and mark the precomputed hashng of edges with those 2 vertices as true.. then just print indices of vertices which are false after getting all shortest paths..
what did u do
My solution doesn't have hashing actually.
What I did was: do a All-Pairs Shortest Path by using Dijkstra V times.
Then I enumerate through each edge, and see if the shortest path between any pairs of nodes pass that edge.
The whole solution works in O(V3 + E * V2).
The complexity is kind of lousy, but we have 8 minutes to work with.