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++
- 구현
- 문자열
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- VR
- 누적 합
- 트리
- 재귀
- DFS
- 그래프
- 브루트포스
- Unreal Engine 5
- 유니티
- BFS
- 그리디 알고리즘
- 투 포인터
- 수학
- 다익스트라
- Team Fortress 2
- ue5
- 우선순위 큐
Archives
- Today
- Total
1일1알
백준 1916번 최소비용 구하기 C++ 본문
다익스트라를 이용해서 해결할 수 있는 문제이다.
인접 행렬로 풀때는 같은 경로인데 다른 비용의 입력이 있을 수 있기 때문에 주의해야 한다.
#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<int64>> graph;
struct VertexCost {
int64 vertex;
int64 cost;
bool operator<(const VertexCost& other) const {
return cost < other.cost;
}
bool operator>(const VertexCost& other) const {
return cost > other.cost;
}
};
void Dijikstra(int start, int end) {
priority_queue<VertexCost, vector<VertexCost>, greater<VertexCost>> pq;
vector<int64> best(n + 1, INT64_MAX);
pq.push({ start,0 });
best[start] = 0;
while (!pq.empty()) {
auto curr = pq.top();
pq.pop();
if (best[curr.vertex] < curr.cost)
continue;
for (int i = 1; i <= n; i++) {
if (graph[curr.vertex][i] == INT64_MAX)
continue;
int64 nextCost = best[curr.vertex] + graph[curr.vertex][i];
if (nextCost >= best[i])
continue;
pq.push({ i,nextCost });
best[i] = nextCost;
}
}
cout << best[end];
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
graph = vector<vector<int64>>(n + 1, vector<int64>(n + 1, INT64_MAX));
for (int i = 0; i < m; i++) {
int64 start, end, cost;
cin >> start >> end >> cost;
graph[start][end] = min(graph[start][end], cost);
}
int start, end;
cin >> start >> end;
Dijikstra(start, end);
};
'알고리즘' 카테고리의 다른 글
백준 1504번 특정한 최단 경로 C++ (0) | 2022.06.15 |
---|---|
백준 5639번 이진 검색 트리 C++ (0) | 2022.06.14 |
백준 1991번 트리 순회 C++ (0) | 2022.06.12 |
백준 1629번 곱셈 C++ (0) | 2022.06.11 |
백준 2407번 조합 C++ (0) | 2022.06.10 |