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
- BFS
- Unreal Engine 5
- 수학
- 누적 합
- 다이나믹 프로그래밍
- VR
- Team Fortress 2
- 자료구조
- 재귀
- 백준
- 다익스트라
- 우선순위 큐
- 브루트포스
- 트리
- c++
- XR Interaction Toolkit
- 유니티
- ue5
- 그리디 알고리즘
- 그래프
- 유니온 파인드
- 알고리즘
- DFS
- 정렬
- 스택
- 구현
- 백트래킹
- 문자열
- 시뮬레이션
- 투 포인터
Archives
- Today
- Total
1일1알
백준 5972번 택배 배송 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;
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;
}
};
vector<vector<pair<int64, int64>>> graph;
void Dijkstra(int64 start) {
vector<int64> best(n + 1, INT_MAX);
priority_queue<VertexCost, vector<VertexCost>, greater<VertexCost>> pq;
pq.push({ start,0 });
best[start] = 0;
while (!pq.empty()) {
auto curr = pq.top();
pq.pop();
if (curr.cost > best[curr.vertex]) continue;
for (auto next : graph[curr.vertex]) {
if (best[next.first] <= curr.cost + next.second) continue;
best[next.first] = curr.cost + next.second;
pq.push({ next.first,curr.cost + next.second });
}
}
cout << best[n];
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
graph = vector<vector<pair<int64, int64>>>(n + 1, vector<pair<int64, int64>>());
for (int i = 0; i < m; i++) {
int64 start, end, cost;
cin >> start >> end >> cost;
graph[start].push_back({end,cost});
graph[end].push_back({start,cost});
}
Dijkstra(1);
}
'알고리즘' 카테고리의 다른 글
백준 1939번 중량제한 C++ (0) | 2022.09.13 |
---|---|
백준 17478번 재귀함수가 뭔가요? C++ (0) | 2022.09.12 |
백준 1253번 좋다 C++ (0) | 2022.09.09 |
백준 24391번 귀찮은 해강이 C++ (0) | 2022.09.08 |
백준 2607번 비슷한 단어 C++ (0) | 2022.09.07 |