-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1753-3.cpp
executable file
·60 lines (56 loc) · 1.34 KB
/
1753-3.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
#include <string>
#include <vector>
#include <queue>
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
int V, E, K, from, to, w;
vector<pair<int, int>> v[20001];
priority_queue<pair<int, int>> pq;
bool visited[20001];
int dis[20001];
int INF = 1000000;
void dijkstra()
{
dis[K] = 0;
pq.push(make_pair(0, K));
while (!pq.empty())
{
int current = pq.top().second;
int value = -pq.top().first;
pq.pop();
if (visited[current] == false)
{
visited[current] = true;
for (int i = 0; i < v[current].size(); i++)
{
// v - u
// u = v[current][i]
if (dis[v[current][i].first] > dis[current] + v[current][i].second)
{
dis[v[current][i].first] = dis[current] + v[current][i].second;
pq.push(make_pair(-dis[v[current][i].first], v[current][i].first));
}
}
}
}
}
int main(void)
{
cin >> V;
cin >> E;
cin >> K; //출발점
for (int i = 0; i < E; i++)
{
cin >> from >> to >> w;
v[from].push_back(make_pair(to, w));
v[to].push_back(make_pair(from, w));
}
for (int i = 1; i <= V; i++)
{
dis[i] = INF;
}
dijkstra();
cout << dis[238] << endl;
}