blob: aa938ec9d64f09cf96a48e2202c8118932ba0c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using path = pair<ll, int>; //dist, destination
void dijkstra(const vector<vector<path>>& adj, int start) {
priority_queue<path, vector<path>, greater<path>> pq;
vector<ll> dist(sz(adj), INF);
vector<int> prev(sz(adj), -1);
dist[start] = 0; pq.emplace(0, start);
while (!pq.empty()) {
auto [dc, c] = pq.top(); pq.pop();
if (dc > dist[c]) continue; // WICHTIG!
for (auto [dx, x] : adj[c]) {
ll newDist = dc + dx;
if (newDist < dist[x]) {
dist[x] = newDist;
prev[x] = c;
pq.emplace(newDist, x);
}}}
//return dist, prev;
}
|