-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDijkstra.cpp
49 lines (47 loc) · 1.16 KB
/
Dijkstra.cpp
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
#include<bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i = (a); i <= (b); ++i)
#define FORD(i,a,b) for(int i = (b); i >= (a); --i)
#define TRAV(x,T) for(auto& x: (T))
#define ALL(T) T.begin(), T.end()
#define TAB(T,a,b) (T)+a, (T)+((b)+1)
#define VAR(x) #x<<" = "<<x<<" "
#define sz(x) (int)(x).size()
#define nwd __gcd
#define pb push_back
#define st first
#define nd second
#define lc (v<<1)
#define rc (v<<1|1)
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<ll, int> pli;
typedef vector<int> vi;
#define deb if(0)
const int N = 1e6, NT = N + 2;
const ll INF = (ll)1e18 + 2;
ll path[2 * NT], D[NT];
vector<pii> V[NT];
priority_queue<pli> Q;
void dijkstra(int v, int n) {
FOR(i, 1, n) D[i] = INF;
D[v] = 0;
Q.push({0, v});
while(!Q.empty()) {
v = Q.top().nd;
ll dist = -Q.top().st;
Q.pop();
if(dist > D[v])
continue;
TRAV(x, V[v]) {
int u = x.st, c = x.nd;
if(D[v] + c < D[u]) {
D[u] = D[v] + c;
path[u] = v;
Q.push({-D[u], u});
}
}
}
}