반응형
문제
풀이
최소 스패닝 트리를 이용한다.
1. 엣지들을 가중치에 대해 오름차순으로 정렬해주고
2. 최소 스패닝 트리를 만족하도록 가중치가 낮은 n - 2개의 엣지를 연결하면 두 그룹으로 나뉘게 된다.
3. 지금까지의 가중치의 합(ans)가 정답이 된다.
소스 코드
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
|
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int Parent[100001];
struct Edge
{
int u;
int v;
int weight;
};
int Find(int x)
{
if (Parent[x] == x)
return x;
else
return Parent[x] = Find(Parent[x]);
}
void Union(int x, int y)
{
x = Find(x);
y = Find(y);
if (x != y)
Parent[y] = x;
}
bool IsSameParent(int x, int y)
{
x = Find(x);
y = Find(y);
if (x != y)
return false;
else
return true;
}
int myCompare(Edge& a, Edge& b)
{
return a.weight < b.weight;
}
int main()
{
ios_base::sync_with_stdio(false);
vector<Edge> v;
int N, M, cnt;
long long ans = 0;
cin >> N >> M;
cnt = N - 2;
for (int i = 1; i <= N; i++)
{
Parent[i] = i;
}
int a, b, cost;
for (int i = 0; i < M; i++)
{
cin >> a >> b >> cost;
v.push_back({ a, b, cost });
}
sort(v.begin(), v.end(), myCompare);
for (int i = 0; i < v.size(); i++)
{
if (IsSameParent(v[i].u, v[i].v) == false)
{
cnt -= 1;
if (cnt < 0)
break;
Union(v[i].u, v[i].v);
ans += v[i].weight;
}
}
cout << ans;
return 0;
}
|
cs |
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준 11404] 플로이드 C++ (0) | 2022.09.27 |
---|---|
[백준 11725] 트리의 부모 찾기 C++ (0) | 2022.09.20 |
[백준 13459] 구슬 탈출 C++ (0) | 2022.08.10 |
[백준 2665] 미로만들기 C++ (0) | 2022.07.24 |
[백준 20055] 컨베이어 벨트 위의 로봇 C++ (0) | 2022.07.12 |