본문 바로가기
백준

[백준 1922] 네트워크 연결, C++

by 황인태(intaehwang) 2020. 2. 17.
반응형

https://www.acmicpc.net/problem/1922

 

1922번: 네트워크 연결

이 경우에 1-3, 2-3, 3-4, 4-5, 4-6을 연결하면 주어진 output이 나오게 된다.

www.acmicpc.net

 본 문제는 최소 스패닝 트리를 구하는 문제다. 최소 스패닝 트리를 구하는 대표적인 방법으로는 prim, kruskal이 있다. 이번 문제는 kruskal을 이용하여 문제를 해결하였다. kruskal을 구현하기 위해선 우선 union-find 자료구조를 구현해야한다. 그리고 간선의 최소 비용을 먼저 연결하면 된다.

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
#include <cstdio>
#include <tuple>
#include <vector>
#include <algorithm>
 
using namespace std;
 
int parent[10001];
int Rank[10001= { 0 };
 
bool cmp(tuple<intintint> x, tuple<intintint> y) {
    int x1, x2, x3;
    int y1, y2, y3;
    tie(x1, x2, x3) = x;
    tie(y1, y2, y3) = y;
    return x3 < y3;
}
 
int Find(int x) {
    if (x == parent[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) return;
    if (Rank[x] < Rank[y]) swap(x, y);
    parent[y] = x;
    if (Rank[x] == Rank[y]) Rank[x] += 1;
}
 
int main() {
    int n, m;
    scanf("%d"&n);
    scanf("%d"&m);
    for (int i = 1; i <= n; i++) {
        parent[i] = i;
    }
    vector<tuple<intintint>> v;
    for (int i = 0; i < m; i++) {
        int x, y, z;
        scanf("%d %d %d"&x, &y, &z);
        v.push_back(make_tuple(x, y, z));
    }
    sort(v.begin(), v.end(), cmp);
    int ans = 0;
    for (int i = 0; i < m; i++) {
        int x, y, z;
        tie(x, y, z) = v[i];
        x = Find(x);
        y = Find(y);
        if (x != y) {
            Union(x, y);
            ans += z;
        }
    }
    printf("%d\n", ans);
}
cs
반응형

'백준' 카테고리의 다른 글

[백준 14891] 톱니바퀴, C++  (0) 2020.02.20
[백준 17144] 미세먼지 안녕!, C++  (0) 2020.02.19
[백준 5557] 1학년, C++  (0) 2020.02.17
[백준 1890] 점프, C++  (0) 2020.02.17
[백준 11058] 크리보드, C++  (0) 2020.02.16
Buy me a coffeeBuy me a coffee

댓글