-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDijkstra.cpp
72 lines (70 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define pb push_back
#define mk make_pair
#define deb(x) cout << #x << "=" << x << endl
#define all(x) x.begin(), x.end()
#define clr(x) memset(x, 0, sizeof(x))
#define sortall(x) sort(all(x))
#define PI 3.1415926535897932384626
#define MOD 1000000007
#define INF (ll)1e30
#define fastIO ios::sync_with_stdio(0); cin.tie(0);
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<pii> vpii;
typedef vector<pll> vpll;
typedef vector<vi> vvi;
typedef vector<vl> vvl;
const int N = 100005;
vector<pair<int, int> >g[N];
vi parent(N, -1);
vl dist(N, INF);
void print(int n)
{
if(n == -1) return ;
print(parent[n]);
cout<<n<<" ";
}
void solve()
{
int n, m;
cin>>n>>m;
for(int i=0;i<m;i++)
{
int a, b, w;
cin>>a>>b>>w;
g[a].pb(mk(b,w));
g[b].pb(mk(a,w));
}
priority_queue<pair<int, int>, vpii, greater<pair<int, int>> >pq;
dist[1] = 0;
pq.push(mk(0, 1));
while(!pq.empty())
{
auto a = pq.top(); pq.pop();
int u = a.second;
for(auto child: g[u])
{
int v = child.first;
int w = child.second;
if(dist[u] + w < dist[v])
{
dist[v] = dist[u] + w;
parent[v] = u;
pq.push(mk(dist[v], v));
}
}
}
if(parent[n] == -1) cout<<"-1\n";
else print(n);
}
int main()
{
fastIO
solve();
return 0;
}