Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 식단
- Algorithm
- 서버개발캠프
- 1편
- 코딩테스트
- 중반부
- c++
- 삼성 #코테 #2020상반기 #c++
- 알고리즘
- 코테
- LIS #Algorithm #요소추적
- BaekJoon
- 카카오인턴
- Union-find
- Smilegate
- 보석쇼핑
- BFS
- 카카오
- 투포인터
- 유니온파인드
- 백준
- 스마일게이트
- 소감
Archives
- Today
- Total
짱아의 개발 기록장
백준 11779번. 최소 비용구하기 2(c++) / 다익스트라 본문
반응형
전형적인 다익스트라 문제이다.
다만, 최소 비용을 구하는 것에서 끝나는 것이 아니라 최소비용을 위해 거치는 모든 도시들을 출력해야한다.
그래서 본인은 city라는 배열을 사용하여 최소 비용의 값이 갱신 될 때마다, 해당 도시를 넣어주었다.
즉, city[a] = b라면 a로 오는 모든 경로중 최소 비용을 차지하는 경로의 출발 도시가 b임을 의미한다.(b->a)
코드 첨부
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
|
// 최소 비용구하기 2(다익스트라)
#include <iostream>
#include <queue>
#include <algorithm>
#include <climits>
using namespace std;
int n, m, from, to, cost, Start, End;
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>> > pq;
vector<pair<int, int> > v[1001];
int city[1001] = {0, }; // city[a] = b이면, a도시는 b에서 오는게 가장 최소 비용이다.
int dist[1001] = {0, };
int visited[1001] = {0, };
vector<int> final;
void go()
{
dist[Start] = 0;
pq.push(make_pair(0, Start));
while(!pq.empty()){
int x = pq.top().second;
int num = pq.top().first;
pq.pop();
if(!visited[x]){
visited[x] = 1;
for(int i=0; i<v[x].size(); i++){
if(dist[v[x][i].first]>num+v[x][i].second){
city[v[x][i].first] = x;
dist[v[x][i].first] = num+v[x][i].second;
pq.push(make_pair(dist[v[x][i].first], v[x][i].first));
}
}
}
}
}
void print_go(int C)
{
if(C==Start){
return;
}
final.push_back(city[C]);
print_go(city[C]);
}
int main()
{
cin>>n>>m;
for(int i=0; i<m; i++){
cin>>from>>to>>cost;
v[from].push_back(make_pair(to, cost));
}
cin>>Start>>End;
for(int i=1; i<=n; i++){
dist[i] = INT_MAX;
}
go();
cout<<dist[End]<<"\n";
final.push_back(End);
print_go(End);
cout<<final.size()<<"\n";
for(int i=final.size()-1; i>=0; i--){
cout<<final[i]<<" ";
}
cout<<"\n";
return 0;
}
|
cs |
문제 첨부
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 1411번. 비슷한 단어(c++) / 문자열 처리 (0) | 2020.08.10 |
---|---|
백준 1956번. 운동(c++) / 플로이드 와샬 (0) | 2020.08.07 |
백준 12908번. 텔레포트 3(c++) / 구현 (0) | 2020.08.06 |
백준 16637번. 괄호 추가하기(c++) / 문자열 처리 (0) | 2020.08.06 |
백준 10845번. 큐(c++) / Queue (0) | 2020.08.04 |
Comments