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
- c++
- 그리디 알고리즘
- 백준
- 알고리즘
- 재귀
- 유니티
- DFS
- 스택
- BFS
- 브루트포스
- 다이나믹 프로그래밍
- Unreal Engine 5
- ue5
- 누적 합
- 구현
- 트리
- XR Interaction Toolkit
- 백트래킹
- VR
- 투 포인터
- 자료구조
- 정렬
- 그래프
- 수학
- 다익스트라
- 문자열
- 유니온 파인드
- 시뮬레이션
- 우선순위 큐
- Team Fortress 2
Archives
- Today
- Total
1일1알
백준 11779번 최소비용 구하기 2 C++ 본문
다익스트라 알고리즘 안에 parent를 저장하는 배열을 추가해서 풀었다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
vector<vector<pair<int, int>>> graph;
struct VertexCost {
bool operator<(const VertexCost& other) const {
return cost < other.cost;
}
bool operator>(const VertexCost& other) const {
return cost > other.cost;
}
int vertex;
int cost;
};
void Dijkstra(int start, int end) {
vector<int> best(n + 1, INT_MAX);
vector<int> parent(n + 1, -1);
priority_queue<VertexCost, vector<VertexCost>, greater<VertexCost>> pq;
pq.push({ start,0 });
best[start] = 0;
parent[start] = start;
while (!pq.empty()) {
auto curr = pq.top();
pq.pop();
int vertex = curr.vertex;
int cost = curr.cost;
if (cost > best[vertex])
continue;
for (auto next : graph[vertex]) {
int nextCost = cost + next.second;
if (nextCost >= best[next.first])
continue;
best[next.first] = nextCost;
pq.push({ next.first,nextCost });
parent[next.first] = vertex;
}
}
int curr = end;
vector<int> ans;
while (true) {
ans.push_back(curr);
if (curr == start) break;
curr = parent[curr];
}
reverse(ans.begin(), ans.end());
cout << best[end] << "\n";
cout << ans.size() << "\n";
for (auto a : ans) {
cout << a << " ";
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
graph = vector<vector<pair<int, int>>>(n + 1, vector<pair<int, int>>());
for (int i = 0; i < m; i++) {
int a, b, d;
cin >> a >> b >> d;
graph[a].push_back({ b,d });
}
int start, end;
cin >> start >> end;
Dijkstra(start, end);
};
'알고리즘' 카테고리의 다른 글
백준 10830번 행렬 제곱 C++ (0) | 2022.06.29 |
---|---|
백준 2638번 치즈 C++ (0) | 2022.06.28 |
백준 1238번 파티 C++ (0) | 2022.06.26 |
백준 14938번 서강그라운드 C++ (0) | 2022.06.25 |
백준 2263번 트리의 순회 C++ (0) | 2022.06.22 |