[백준2606]바이러스

뚱환·2023년 5월 9일
0

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

입력

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

출력

1번 컴퓨터가 웜 바이러스에 걸렸을 때, 1번 컴퓨터를 통해 웜 바이러스에 걸리게 되는 컴퓨터의 수를 첫째 줄에 출력한다.

풀이

쉽게 그냥 방문하여 true되는 시점에
카운트를 세주고 출력하면 된다.

코드

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<queue>
#include<algorithm>
using namespace std;
vector<vector<int>> arr;
vector<bool>visitied;
int cnt = 0;
void dfs(int n)
{

	visitied[n] = true;

	for (auto i : arr[n])
	{
		if (!visitied[i])
		{
			visitied[i] = true;
			cnt++;
			dfs(i);
		}
	}

}

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	int n, m;
	cin >> n >> m;
	arr.resize(n + 1);
	visitied = vector<bool>(n + 1, false);
	for (int i = 0; i < m; i++)
	{
		int a, b;
		cin >> a >> b;
		arr[a].push_back(b);
		arr[b].push_back(a);

	}

	dfs(1);
	cout << cnt;
	return 0;

}
profile
https://github.com/lixxce5017/Algoritm_Weekly_Baekjoon

0개의 댓글