수학과의 좌충우돌 프로그래밍

[C++] BAEKJOON 2606 바이러스 본문

알고리즘/C++

[C++] BAEKJOON 2606 바이러스

ssung.k 2019. 9. 22. 22:50

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

 

2606번: 바이러스

첫째 줄에는 컴퓨터의 수가 주어진다. 컴퓨터의 수는 100 이하이고 각 컴퓨터에는 1번 부터 차례대로 번호가 매겨진다. 둘째 줄에는 네트워크 상에서 직접 연결되어 있는 컴퓨터 쌍의 수가 주어진다. 이어서 그 수만큼 한 줄에 한 쌍씩 네트워크 상에서 직접 연결되어 있는 컴퓨터의 번호 쌍이 주어진다.

www.acmicpc.net

Union-Find 알고리즘을 사용하여 문제를 해결하였습니다.

#include <iostream>

using namespace std;

int parent[100];

int Find(int a){
    if (a==parent[a])
        return a;
    int b = Find(parent[a]);
    parent[a] = b;
    return b;
}

void Union(int a,int b){
    a = Find(a);
    b = Find(b);
    if (a!=b)
        parent[b] = a;
}

int main(int argc, const char * argv[]) {
    int N,M;
    
    cin >> N >> M;
    
    for (int i=1;i<=N;i++){
        parent[i] = i;
    }
    
    for (int i=0;i<M;i++){
        int a,b;
        cin >> a >> b;
        Union(a,b);

    }
    
    int count = 0;
    
    for (int i=2;i<=N;i++){
        if (Find(1) == Find(i)) count++;
    }
    
    cout << count << "\n";
    
    return 0;
}

 

'알고리즘 > C++' 카테고리의 다른 글

[C++] BAEKJOON 16283 Farm  (0) 2019.09.29
[C++] BAEKJOON 1260 DFS 와 BFS  (0) 2019.09.28
[C++] BAEKJOON 1717 집합의 표현  (0) 2019.09.22
[C++] BAEKJOON 2110 공유기 설치  (0) 2019.09.21
[C++] BAEKJOON 2805 나무 자르기  (0) 2019.09.21
Comments