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 | 31 |
Tags
- 티스토리챌린지
- softeer
- directx
- Programmers
- Unreal Engine5
- 백준
- 2294
- winapi
- UE5
- const
- DirectX11
- baekjoon
- C++
- GeeksForGeeks
- C
- algorithm
- NRVO
- UnrealEngine4
- IFileDialog
- 팰린드롬 만들기
- UnrealEngine5
- 오블완
- RVO
- 언리얼엔진5
- 1563
- 프로그래머스
- Frustum
- DeferredRendering
- 줄 세우기
- RootMotion
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2211번 :: 네트워크 복구 본문
https://www.acmicpc.net/problem/2211
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_set>
using namespace std;
struct Node
{
int node;
int dist;
};
struct cmp
{
bool operator() (const Node& a, const Node& b)
{
return a.dist > b.dist;
}
};
int n, m;
vector<vector<Node>> graph(1001);
int dist[1001] = { 0 };
int parent[1001] = { 0 };
const int maxNum = 0x3f3f3f3;
void Dij(int startNode)
{
vector<pair<int, int>> edges;
int lineCount = 0;
dist[startNode] = 0;
priority_queue<Node, vector<Node>, cmp> pq;
pq.push({ startNode,0 });
while (!pq.empty())
{
int curNode = pq.top().node;
int curDist = pq.top().dist;
pq.pop();
if (dist[curNode] < curDist) continue;
for (int i = 0; i < graph[curNode].size(); ++i)
{
int nextNode = graph[curNode][i].node;
int nextDist = curDist + graph[curNode][i].dist;
if (nextDist < dist[nextNode]) // 새로업데이트하는거라면
{
parent[nextNode] = curNode;
dist[nextNode] = nextDist;
pq.push({ nextNode,nextDist });
}
}
}
printf("%d\n", n - 1);
for (int i = 2; i <= n; ++i)
{
printf("%d %d\n", i, parent[i]);
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
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 });
}
memset(dist, 0x3f, sizeof(dist));
Dij(1);
}
|
cs |
문제의 포인트는, 1번정점부터 시작해서 최소비용으로 모든 정점 돌았을 때, 각 간선의 정보를 구해야한다는 것이다.
복구회선은 무조건 n-1개이다. 최소비용이기 때문에 각 정점을 잇는 회선 1개씩만 구성되어지기 때문이다.
간선의 정보는, 새로운 거리를 업데이트할 때 부모자식관계를 저장함으로써 구한다. (63번째 라인)
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 13144번 :: List of Unique Numbers (0) | 2024.10.29 |
---|---|
[Algorithm]Baekjoon 1774번 :: 우주신과의 교감 (0) | 2024.10.28 |
[Algorithm]Baekjoon 2617번 :: 구슬 찾기 (0) | 2024.10.28 |
[Algorithm]Baekjoon 29756번 :: DDR 체력 관리 (0) | 2024.10.28 |
[Algorithm]Baekjoon 2461번 :: 대표 선수 (0) | 2024.10.25 |