일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 플로이드 와샬
- Overfitting
- c++
- 가끔은_말로
- 회고록
- 알고리즘
- 이분 탐색
- back propagation
- 세그먼트 트리
- 미래는_현재와_과거로
- 백트래킹
- DP
- 자바스크립트
- 분할 정복
- 2023
- 크루스칼
- NEXT
- dfs
- 조합론
- BFS
- 너비 우선 탐색
- dropout
- pytorch
- lazy propagation
- 가끔은 말로
- 우선 순위 큐
- 문자열
- object detection
- 다익스트라
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 2211번: 네트워크 복구 (C++) 본문
https://www.acmicpc.net/problem/2211
이번 문제는 문제의 뜻을 파악하기가 어렵다. (https://yabmoons.tistory.com/444)
우선 최소 몇 개의 회선을 복구해야 하는지는 당연히 1부터 2 ~ N까지 가는 회선의 최소 개수이기 때문에
K = N - 1이다.
1은 슈퍼 컴퓨터이므로 1을 제외한 각 노드들로부터 1로 가는 제일 첫 노드로 가는 간선을 출력해주면 된다.
#include <iostream>
#include <queue>
#include <vector>
#include <utility>
#define pii pair<int, int>
#define MAX 1000 + 1 // n이 될 수 있는 수가 1000이 최대라서 플로이드 와샬은 안 된다.
#define INF 987654321
using namespace std;
vector<pii> graph[MAX];
int n, m;
int trace[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);
priority_queue<pii, vector<pii>, cmp> pq;
dist[node] = 0;
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] });
trace[next] = now; // 간선 입력
}
}
}
return dist;
}
int main() {
cin >> n >> m;
for (int i = 0, a, b, c; i < m; i++) {
cin >> a >> b >> c;
graph[a].push_back({ b, c });
graph[b].push_back({ a, c });
}
vector<int> dist = dijkstra(1);
cout << n - 1 << '\n';
for (int i = 2; i <= n; i++) {
cout << trace[i] << ' ' << i << '\n';
}
return 0;
}
업 솔빙 필요한 문제
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 백준 2617번: 구슬 찾기 (C++) (0) | 2021.12.08 |
---|---|
[알고리즘] 백준 1584번: 게임 (C++) (0) | 2021.12.07 |
[알고리즘] 백준 13424번: 비밀 모임 (C++) (0) | 2021.12.07 |
[알고리즘] 백준 2665번: 미로만들기 (C++) (0) | 2021.12.07 |
[알고리즘] 백준 11780번: 플로이드 2 (C++), 최단 경로 발생 노드 담기 (0) | 2021.12.06 |