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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
#include <iostream>
#include <vector>
#include <queue>
#include <cstring>
#include <functional>
#define MAXX 501
#define INF 987654321
using namespace std;
typedef pair<int, int> pp;
vector<pp> edges[MAXX];
int cost[MAXX];
bool visited[MAXX];
void backDijkstra(int start, int len, int n) {
priority_queue<pp, vector<pp>, greater<pp> > pq;
cost[start] = len;
//거꾸로 시작
pq.pop();
if (visited[now]) continue;
visited[now] = true;
//now로 들어오는 간선
for (int i = 0; i < n; i++) {
vector<pp> tmp;
for (auto edge : edges[i]) {
//들어오는 간선이 지금 노드일 때
//최단 경로에 포함된 간선이다.
//간선을 없애버린다.
continue;
}
}
tmp.push_back(edge);
}
edges[i] = tmp;
}
}
}
void dijkstra(int start, int dest) {
priority_queue<pp, vector<pp>, greater<pp> > pq;
pq.push(pp(0, start));
cost[start] = 0;
pq.pop();
if (visited[now]) continue;
visited[now] = true;
for (auto i : edges[now]) {
int next = i.second;
int n_cost = i.first;
if (!visited[next] && cost[next] > cost[now] + n_cost) {
cost[next] = cost[now] + n_cost;
}
}
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
//거의최소 경로는 시작 점에서 나가는 경로가 하나일 경우에는 있을 수 없다.
while (1) {
int n, m, s, d;
cin >> n >> m;
if (!n && !m) break;
for (int i = 0; i < n; i++) edges[i].clear();
memset(visited, 0, sizeof(visited));
cin >> s >> d;
for (int i = 0; i < n; i++) cost[i] = INF;
int cntIn = 0;
for (int i = 0; i < m; i++) {
int a, b, c;
cin >> a >> b >> c;
edges[a].push_back(pp(c, b));
if (b == d) {
cntIn++;
}
}
//방향 그래프
if (cntIn == 1) {
cout << -1 << '\n';
continue;
}
dijkstra(s, d);
//거꾸로 돌리면서 최단 경로에 포함되는 간선을 제외시킨다.
memset(visited, 0, sizeof(visited));
backDijkstra(d, cost[d], n);
for (int i = 0; i < n; i++) cost[i] = INF;
memset(visited, 0, sizeof(visited));
dijkstra(s, d);
if (cost[d] == INF) cout << -1 << '\n';
else cout << cost[d] << '\n';
}
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
BOJ/C++