관리 메뉴

기억을 위한 기록들

[백준 1389: 케빈 베이컨의 6단계 법칙] - C++ 본문

Coding Test - cpp/BFS

[백준 1389: 케빈 베이컨의 6단계 법칙] - C++

에드윈H 2021. 2. 9. 13:22

www.acmicpc.net/problem/1389

 

1389번: 케빈 베이컨의 6단계 법칙

첫째 줄에 유저의 수 N (2 ≤ N ≤ 100)과 친구 관계의 수 M (1 ≤ M ≤ 5,000)이 주어진다. 둘째 줄부터 M개의 줄에는 친구 관계가 주어진다. 친구 관계는 A와 B로 이루어져 있으며, A와 B가 친구라는 뜻

www.acmicpc.net

#include<iostream>
#include<queue>
#include<string.h>
using namespace std;
int map[101][101];
bool chk[101];
int main() {
	int n, m;

	cin >> n >> m;
	int input1;
	int input2;
	for (int i = 0; i < m; i++)
	{
		cin >> input1 >> input2;

		map[input1][input2] = 1;
		map[input2][input1] = 1;
	}
	queue<pair<int, int>> q;//현재번호와 현재층

	int sum = 0;
	int result = 214000000;
	int people = 0;
	for (int i = 1; i <= n; i++)
	{
		q.push({ i,0 });
		chk[i] = true;
		sum = 0;
		while (!q.empty())
		{

			int curNum = q.front().first;
			int nextLayer = q.front().second + 1;
			q.pop();			
			
			for (int j = 1; j <= n; j++)
			{
				if (map[curNum][j] == 1 && !chk[j])
				{
					chk[j] = true;
					q.push({ j, nextLayer });
					sum += nextLayer;
				}
			}					
		}

		if (sum < result)
		{
			result = sum;
			people = i;
		}
		memset(chk, false, sizeof(chk));		
	}

	cout << people << endl;
	return 0;
}