티스토리 뷰
정말 직관적으로 문제에서 하라는대로 풀었다
먼저 최단거리를 찾아보다 그리고 이 때 내가 최단거리를 가는 모든 경우를
pre라는 벡터에 저장한다
그리고 최단거리를 구한 후 거꾸로 목적지에서부터 타고오며
check set에 넣는다 이건 간선을 제거하는 과정이라고 보면 편하다
그리고 다시 그래프를 그려서 다익스트라를 돌리면 최단거리를 제외한
2번째 최단거리가 나오게 된다
소스코드
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
|
#include <iostream>
#include <algorithm>
#include <queue>
#include <cstring>
#include <vector>
#include <set>
using namespace std;
int n,m,s,t,cnt;
int d[505],arr[505];
vector<vector<pair<int,int>>> graph;
vector<pair<pair<int,int>,int>> road;
vector<vector<int>> pre;
set<pair<int,int>> check;
void _remove(int u,int v){
if(u==-1) return;
for(int i=0;i<pre[u].size();i++) _remove(pre[u][i],u);
check.insert({u,v});
}
int dijk(){
memset(d,-1,sizeof(d));
priority_queue<pair<pair<int,int>,int>> pq;
pq.pop();
if(cost==d[pos]) pre[pos].push_back(pr);
if(d[pos] != -1) continue;
pre[pos].push_back(pr);
d[pos]=cost;
for(int i=0;i<graph[pos].size();i++){
int next = graph[pos][i].first;
int ncost = -cost -graph[pos][i].second;
}
}
return d[t];
}
int main(){
//freopen("input.txt","r",stdin);
while(scanf(" %d %d",&n,&m)){
if(n==0 && m==0) return 0;
memset(arr,0,sizeof(arr));
scanf("%d %d",&s,&t); cnt=0;
for(int i=0;i<m;i++){
int u,v,c; scanf(" %d %d %d",&u,&v,&c);
graph[u].push_back({v,c});
road.push_back({{u,v},c});
}
int ans = dijk();
for(int i=0;i<pre[t].size();i++) _remove(pre[t][i],t);
for(int i=0;i<road.size();i++){
int c = road[i].second;
graph[u].push_back({v,c});
}
ans = dijk();
printf("%d\n",ans);
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
'알고리즘 > BOJ' 카테고리의 다른 글
[백준] 15903 카드 합체 놀이 (0) | 2019.08.27 |
---|---|
[백준] 9370 미확인 도착지 (0) | 2019.08.27 |
[백준] 17267 상남자 (0) | 2019.08.27 |
[백준] 1987 알파벳 (0) | 2019.08.27 |
[백준] 3649 로봇 프로젝트 (0) | 2019.08.27 |
댓글