일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tensorflow
- DP
- 플로이드 와샬
- dfs
- back propagation
- 문자열
- object detection
- BFS
- 우선 순위 큐
- 미래는_현재와_과거로
- 가끔은 말로
- 회고록
- 너비 우선 탐색
- 가끔은_말로
- c++
- 세그먼트 트리
- 자바스크립트
- 다익스트라
- 조합론
- 크루스칼
- pytorch
- 2023
- lazy propagation
- 백트래킹
- Overfitting
- 알고리즘
- NEXT
- 이분 탐색
- dropout
- 분할 정복
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 14284번: 간선 이어가기 2 (C++) 본문
https://www.acmicpc.net/problem/14284
문제에서 하란대로 간선의 순서까지 조정하며 간선을 추가할 때마다 다익스트라를 돌려야 할 거 같지만 이는 헷갈리게 하려는 의도다.
그냥 다익스트라 한 번 돌리면 끝이다.
#include <iostream>
#include <utility>
#include <queue>
#include <vector>
#define MAX 5000 + 1
#define INF 987654321
#define pii pair<int, int>
using namespace std;
vector<pii> graph[MAX];
int n, m;
struct cmp {
bool operator()(pii& a, pii& b) {
return a.second > b.second;
}
};
vector<int> dijkstra(int node) {
priority_queue<pii, vector<pii>, cmp> pq;
vector<int> dist(n + 1, INF);
dist[node] = 0;
pq.push({ node, 0 });
while (!pq.empty()) {
int now = pq.top().first;
int cost = pq.top().second;
pq.pop();
for (int i = 0; i < graph[now].size(); i++) {
int next = graph[now][i].first;
int nextCost = graph[now][i].second;
if (cost + nextCost < dist[next]) {
dist[next] = cost + nextCost;
pq.push({ next, dist[next] });
}
}
}
return dist;
}
int main() {
cin >> n >> m;
for (int i = 0; i < m; i++) {
int a, b, c;
cin >> a >> b >> c;
graph[a].push_back({ b, c });
graph[b].push_back({ a, c });
}
int s, t;
cin >> s >> t;
vector<int> temp = dijkstra(s);
cout << temp[t];
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 백준 5719번: 특정한 최단 경로 (C++), 경로 역추적(2) (0) | 2021.12.05 |
---|---|
[알고리즘] 백준 1719번: 택배 (C++), 경로 역추적 (0) | 2021.12.05 |
[알고리즘] 백준 4485번: 녹색 옷 입은 애가 젤다지? (C++) (0) | 2021.12.04 |
[알고리즘] 백준 9370번: 미확인 도착지 (C++) (0) | 2021.12.04 |
[알고리즘] 백준 10282번: 해킹 (C++) (0) | 2021.12.01 |