-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdijkstra.h
More file actions
69 lines (58 loc) · 1.64 KB
/
dijkstra.h
File metadata and controls
69 lines (58 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#pragma once
#include "graph.h"
#include "template.h"
template <typename T>
class Dijkstra {
private:
T INF = numeric_limits<T>::max() / 10;
int V; // 頂点数
AdjList<T> adj; // adj[始点][動的配列で始点から伸びる枝]
vector<int> prever;
public:
explicit Dijkstra(int n);
vector<T> cost;
void AddEdge(int f, int t, int c);
bool HasPath(int t); // tに至るパスはあるか
vector<int> GetShortestPath(int t); // tへの最短路
void Run(int f);
};
template <typename T>
Dijkstra<T>::Dijkstra(int n)
: V(n + 1), adj(V), prever(vector<int>(V, -1)), cost(V) {
fill(cost.begin(), cost.end(), INF);
}
template <typename T>
void Dijkstra<T>::AddEdge(int f, int t, int c) {
adj[f].push_back(Edge<T>(t, c));
}
template <typename T>
bool Dijkstra<T>::HasPath(int t) {
return cost[t] != INF;
}
template <typename T>
vector<int> Dijkstra<T>::GetShortestPath(int t) {
vector<int> path;
for (; t != -1; t = prever[t]) path.push_back(t);
reverse(path.begin(), path.end());
return path;
}
template <typename T>
void Dijkstra<T>::Run(int firstNode) {
using Pi = pair<T, int>;
priority_queue<Pi, vector<Pi>, greater<Pi>> pq;
cost[firstNode] = 0;
pq.push(Pi(cost[firstNode], firstNode));
while (!pq.empty()) {
Pi currentEdge = pq.top();
pq.pop();
if (cost[currentEdge.second] < currentEdge.first) continue;
for (Edge<T> tmp : adj[currentEdge.second]) {
T sumCost = currentEdge.first + tmp.cost;
if (cost[tmp.to] > sumCost) {
cost[tmp.to] = sumCost;
prever[tmp.to] = currentEdge.second;
pq.push(Pi(cost[tmp.to], tmp.to));
}
}
}
}