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 |
Tags
- Unity
- ubuntu
- PS
- linux
- Graham Scan
- Expanding Polytope Algorithm
- uclidean algorithm
- 보로노이다이어그램
- 우분투
- C++
- 벡터
- Doubly Connected Edge List
- 백준
- SOH
- 외적
- 분할축 이론
- Vector
- 수학
- 리눅스
- 유니티
- dp
- 내적
- C
- 다이나믹 프로그래밍
- GJK
- c#
- AABB
- 충돌 알고리즘
- 알고리즘
- 문제풀이
Archives
- Today
- Total
마이 플밍 블로그
[C++] 백준 11779 - 최소비용 구하기 2 본문
풀이
다익스트라로 길을 저장하면서 풀면 된다.
코드
#include <bits/stdc++.h>
using namespace std;
vector<pair<int,int>> adj[1001];
int n,e;
int nstart,nend;
void Dijkstra(int src){
vector<int> dist(1001, 100000002);
dist[src] = 0;
int path[1001];
priority_queue<pair<int,int>> q;
q.push(make_pair(0,src));
while(!q.empty()){
int cost = -q.top().first;
int node = q.top().second;
q.pop();
if(dist[node] < cost)
continue;
int nextCost, nextNode;
for(int i = 0; i < adj[node].size(); i++){
// cout << cost << " " << adj[node][i].second << endl;
nextCost = adj[node][i].second + cost;
nextNode = adj[node][i].first;
if(nextCost < dist[nextNode]){
dist[nextNode] = nextCost;
path[nextNode] = node;
q.push(make_pair(-nextCost,nextNode));
}
}
}
cout << dist[nend] << endl;
vector<int> vpath;
int nextNode = nend;
while(true){
if(nextNode == nstart){
break;
}
vpath.push_back(nextNode);
nextNode = path[nextNode];
}
cout << vpath.size()+1 << endl;
cout << nstart << " ";
for(int i = vpath.size() -1; i >= 0; i--){
cout << vpath[i] << " ";
}
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> n >> e;
int b,nb,c;
for(int i =0 ; i < e; i++){
cin >> b >> nb >> c;
adj[b].push_back(make_pair(nb,c));
}
cin >> nstart >> nend;
Dijkstra(nstart);
return 0;
}
'문제풀이 > 백준' 카테고리의 다른 글
[C++] 백준 18223 - 민준이와 마산 그리고 건우 (1) | 2023.10.09 |
---|---|
[C++] 백준 1504 - 특정한 최단 경로 (1) | 2023.10.09 |
[C++] 백준 2234 - 성곽 (1) | 2023.10.07 |
[C++] 백준 14442 - 벽 부수고 이동하기 2 (1) | 2023.10.07 |
[C++] 백준 1600 - 말이 되고픈 원숭이 (1) | 2023.10.06 |