일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- NAV
- 2579
- MongoDB
- 16.04
- dynaminprogramming
- node.js
- HTML
- 파이썬
- bootstrap
- baekjun
- 백준
- Crawling
- 크롤링
- nav-tab
- algotythm
- 트리
- 라즈비안
- Python
- 13237
- CSS
- raspberrypi
- 라즈베리파이
- 라즈베리파이3
- springboot3.x
- 2909
- Algorythm
- dp
- ubuntu
- 알고리즘
- 라즈베리파이3b+
Archives
- Today
- Total
노트
[백준] 1389번 케빈 베이컨의 6단계 법칙 python 본문
import sys
from collections import deque
def bfs(v):
queue = deque([v])
visited[v] = 1
while queue:
target = queue.popleft()
for i in graph[target]:
if not visited[i]:
visited[i] = visited[target] + 1
queue.append(i)
n, m = map(int, sys.stdin.readline().split())
graph = [[] for _ in range(n + 1)]
for i in range(m):
a, b = map(int, sys.stdin.readline().split())
graph[a].append(b)
graph[b].append(a)
res = []
for i in range(1, n + 1):
visited = [0] * (n + 1)
bfs(i)
res.append(sum(visited))
print(res.index(min(res)) + 1)
'알고리즘' 카테고리의 다른 글
[백준] 13237번 Binary tree python (0) | 2024.03.01 |
---|---|
[백준] 14501번 퇴사 python (0) | 2024.03.01 |
[백준] 1010번 다리 놓기 python (1) | 2024.02.12 |
[백준] 11724번 연결 요소의 개수 python (0) | 2024.02.04 |
[백준] 2909번 캔디 구매 python (0) | 2024.01.28 |
Comments