알고리즘/BFS & DFS

[백준/BFS/C++] 2606번 바이러스

데메즈 2023. 1. 24. 12:09
728x90
반응형

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

 

2606번: 바이러스

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

www.acmicpc.net

#include <bits/stdc++.h>

using namespace std;

int n, m;
vector<int> v[101];
bool isVisited[101];
int result = 0;

void findVirus(){
    queue<int> q;
    q.push(1);
    isVisited[1] = true;

    while(!q.empty()){
        int front = q.front();
        q.pop();
        result++;
        for(int i=0; i<v[front].size(); i++){
            int x = v[front][i];
            if(!isVisited[x]){
                isVisited[x] = true;
                q.push(x);
            }
        }
    }
}

void input(){
    cin >> n >> m;
    for(int i=0; i<m; i++){
        int x, y;
        cin >> x >> y;
        v[x].push_back(y);
        v[y].push_back(x);
    }
}

int main(){
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    input();
    findVirus();
    cout << result - 1;

    return 0;
}
728x90
반응형