일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 플로이드 와샬
- Overfitting
- 백트래킹
- 세그먼트 트리
- DP
- back propagation
- pytorch
- NEXT
- 너비 우선 탐색
- 알고리즘
- lazy propagation
- 크루스칼
- 이분 탐색
- 회고록
- 2023
- 분할 정복
- dfs
- 미래는_현재와_과거로
- object detection
- tensorflow
- BFS
- 가끔은_말로
- 가끔은 말로
- 조합론
- 우선 순위 큐
- c++
- 문자열
- dropout
- 다익스트라
- 자바스크립트
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 9694번: 무엇을 아느냐가 아니라 누구를 아느냐가 문제다 (C++) 본문
https://www.acmicpc.net/problem/9694
양방향 그래프로 0에서 시작하는 다익스트라를 돌려주면 된다.
경로를 담아내는 방법은
(https://draw-code-boy.tistory.com/144)
다음과 같이 경로 역추적의 방식으로 해주면 된다.
[AC 코드]
#include <iostream>
#include <queue>
#include <utility>
#include <vector>
#include <stack>
#define MAX 20 + 1
#define INF 987654321
#define pii pair<int, int>
using namespace std;
int n, m;
int T;
vector<pii> graph[MAX];
//vector<pii> trace[MAX];
int trace[MAX];
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(20 + 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] });
trace[next] = now;
//trace[next].clear();
//trace[next].push_back({ now, dist[next] });
}
else if (cost + nextCost == dist[next]) {
//trace[next].push_back({ now, dist[next] });
}
}
}
return dist;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> T;
for (int t = 0; t < T; t++) {
cin >> n >> m;
for (int i = 0; i < n; i++) {
int x, y, w;
cin >> x >> y >> w;
graph[x].push_back({ y, w });
graph[y].push_back({ x, w });
}
cout << "Case #";
cout << t + 1 << ": ";
vector<int> temp = dijkstra(0);
if (temp[m - 1] == INF) cout << -1 << '\n';
else {
stack<int> s;
int node = m - 1;
s.push(node);
while (s.top() != 0) {
node = trace[node];
s.push(node);
}
while (!s.empty()) {
cout << s.top() << ' ';
s.pop();
}
cout << '\n';
}
//init
for (int i = 0; i <= 20; i++) {
graph[i].clear();
//trace[i].clear();
trace[i] = 0;
}
}
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 백준 1647번: 도시 분할 계획 (C++) (0) | 2021.12.16 |
---|---|
[알고리즘] 21278번: 호석이 두 마리 치킨 (C++) (0) | 2021.12.15 |
[알고리즘] 백준 1261번: 알고스팟 (C++) (0) | 2021.12.14 |
[알고리즘] 백준 1321번: 군인 (C++) (0) | 2021.12.14 |
[알고리즘] 백준 1946번: 신입 사원 (C++), 그리디 알고리즘 (0) | 2021.12.14 |