Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- List 추가
- Parse 사용법
- 네트워크 용어
- C# Contains
- 네트워크
- list
- 알고리즘
- AddRange
- 호스트
- OSI 3계층
- c# list
- IP주소
- list 사용법
- BFS
- DP
- c#
- C# Find
- List 정렬
- Tostring 사용법
- 호스트 주소
- List 찾기
- 서브넷 마스크
- TCP/IP
- C++
- 서브넷
- Visual Studio
- 기본 게이트웨이
- 백준
- List 제거
- InsertRange
Archives
- Today
- Total
CodeLabs
[백준 / C#] 1389 : 케빈 베이컨의 6단계 법칙 본문
internal class Program
{
static int[,] arr;
static int n, m, start, end, min = int.MaxValue, result = 0;
static List<List<int>> list = new List<List<int>>();
static bool[] visit = new bool[101];
static void BFS(int pivot, int cnt)
{
if(pivot == end)
{
arr[start, end] = Math.Min(cnt, arr[start, end]);
return;
}
visit[pivot] = true;
for (int i = 0; i < list[pivot].Count; i++)
{
if (!visit[list[pivot][i]])
{
BFS(list[pivot][i], cnt + 1);
visit[list[pivot][i]] = false;
}
}
}
static void Solution()
{
for (int i = 1; i <= n; i++)
{
start = i;
for (int j = 1; j <= n; j++)
{
end = j;
if (list[i] != null)
{
visit[i] = true;
BFS(start, 0);
visit[i] = false;
}
}
int sum = 0;
for (int num = 1; num <= n; num++)
sum += arr[i, num];
if (sum < min)
{
min = sum;
result = i;
}
}
}
static void Input()
{
var input = Console.ReadLine().Split();
n = int.Parse(input[0]);
m = int.Parse(input[1]);
arr = new int[n + 1, n + 1];
for (int i = 0; i <= n; i++)
{
list.Add(new List<int>());
for (int j = 0; j <= n; j++)
arr[i, j] = int.MaxValue;
}
for(int i=0; i<m; i++)
{
input = Console.ReadLine().Split();
list[int.Parse(input[0])].Add(int.Parse(input[1]));
list[int.Parse(input[1])].Add(int.Parse(input[0]));
}
}
static void Output()
{
Console.WriteLine(result);
}
static void Solve()
{
Input();
Solution();
Output();
}
static void Main(string[] args)
{
Solve();
}
}
'백준 > 1000 ~' 카테고리의 다른 글
[백준 / C#] 1463 : 1로 만들기 (0) | 2023.07.11 |
---|---|
[백준 / C#] 1260 : DFS와 BFS (0) | 2023.07.09 |
[백준 / C#] 1012 : 유기농 배추 (0) | 2023.07.06 |
[백준 / C#] 1003 : 피보나치 함수 (0) | 2023.07.03 |
[백준 / C#] 1074 : Z (0) | 2023.06.26 |