본문 바로가기

ProgramSoliving

백준 : 2606

반응형

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

 

2606번: 바이러스

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

www.acmicpc.net

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
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
 
using namespace std;
 
int N;
int my_pair;
 
int main(void) {
    cin >> N;
    cin >> my_pair;
 
    vector <bool> check(N,false);
    vector <pair<int,int> > v;
    queue<int> q;
    pair<intint> pair_tmp;
 
    check[0= true;
 
    for (int i = 0;i < my_pair;i++) {
        cin >> pair_tmp.first >> pair_tmp.second;
        v.push_back(pair_tmp);
        
        
        //Queue 에넣기
        if (pair_tmp.first == 1) {
            q.push(pair_tmp.second);
        }
        else if(pair_tmp.second == 1){
            q.push(pair_tmp.first);
        }
    }
 
    while (!q.empty()) {
        int target = q.front();
        //cout << target << endl;
        q.pop();
        check[target - 1= true;
 
        for (int i = 0;i <my_pair;i++) {
            if (v[i].first == target && check[v[i].second -1]==false) {
                q.push(v[i].second);
            }
            else if (v[i].second == target && check[v[i].first -1]==false) {
                q.push(v[i].first);
            }
        }
        
    }
 
 
    int cnt = 0;
    for (int i = 0;i < check.size();++i) {
        if (check[i] == true++cnt;
    }
    cout << cnt-1;
 
 
 
    
    
 
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
반응형

'ProgramSoliving' 카테고리의 다른 글

백준 : 7576  (0) 2019.12.17
백준 : 1012  (0) 2019.12.16
백준 : 1436  (0) 2019.12.16
백준 : 1018  (0) 2019.12.15
백준 : 7568  (0) 2019.12.13