일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- NEXT
- 자바스크립트
- 미래는_현재와_과거로
- dfs
- 문자열
- 우선 순위 큐
- 백트래킹
- 이분 탐색
- 조합론
- 2023
- 다익스트라
- BFS
- 세그먼트 트리
- 크루스칼
- tensorflow
- 너비 우선 탐색
- 분할 정복
- Overfitting
- DP
- object detection
- pytorch
- 알고리즘
- 회고록
- dropout
- 가끔은 말로
- lazy propagation
- 가끔은_말로
- 플로이드 와샬
- c++
- back propagation
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 5590번: 船旅 (C++) 본문
https://www.acmicpc.net/problem/5590
파파고 돌려서 번역했다. 다익스트라 문제였다.
0 b c: b에서 c로 가는 최단 경로를 구하라. 갈 수 없다면 -1
1 b c d: 는 b와 c를 이어주는 가중치가 d인 양방향 경로가 생긴다.
[AC 코드]
#include <iostream>
#include <queue>
#include <utility>
#include <vector>
#define pii pair<int, int>
#define MAX (100 + 1)
#define INF 987654321
using namespace std;
int n, k;
vector<pii> graph[MAX];
struct cmp {
bool operator()(pii& a, pii& b) {
return a.second > b.second;
}
};
vector<int> dijkstra(int node) {
vector<int> dist(n + 1, INF);
dist[node] = 0;
priority_queue<pii, vector<pii>, cmp> pq;
pq.push({ node, 0 });
while (!pq.empty()) {
int now = pq.top().first;
int cost = pq.top().second;
pq.pop();
if (dist[now] < cost) {
continue;
}
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() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> k;
for (int i = 0, a; i < k; i++) {
cin >> a;
if (a == 0) {
int b, c;
cin >> b >> c;
vector<int> temp = dijkstra(b);
if (temp[c] == INF) {
cout << -1 << '\n';
}
else {
cout << temp[c] << '\n';
}
}
else {
int b, c, d;
cin >> b >> c >> d;
graph[b].push_back({ c, d });
graph[c].push_back({ b, d });
}
}
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 백준 1321번: 군인 (C++) (0) | 2021.12.14 |
---|---|
[알고리즘] 백준 1946번: 신입 사원 (C++), 그리디 알고리즘 (0) | 2021.12.14 |
[알고리즘] 백준 13116번: 30번 (C++) (0) | 2021.12.13 |
[알고리즘] 백준 1306번: 달려라 홍준 (C++), 슬라이딩 윈도우 (0) | 2021.12.13 |
[자료구조] 백준 18436번: 수열과 쿼리 37 (C++) (0) | 2021.12.13 |