Algorithms / 백준 2644번 파이썬
7556 단어 pythonAlgorithms백준Algorithms
링크
https://www.acmicpc.net/problem/2644
풀이
코드
from collections import deque
def printGraph(graph):
for i in range(1,len(graph)):
print(i,':',graph[i])
n = int(input())
x, y = map(int ,input().split())
m = int(input())
graph = [[] for _ in range(n+1)]
visited = [0] * (n+1)
count = 0
for _ in range(m):
a, b = map(int, input().split())
graph[a].append(b)
graph[b].append(a)
# printGraph(graph)
def bfs(x):
q = deque([])
q.append(x)
visited[x] = 1
while q:
v = q.popleft()
for item in graph[v]:
if visited[item] == 0:
visited[item] = visited[v] + 1
# print(visited[item])
q.append(item)
bfs(x)
print((visited[y]-1) if (visited[y]!=0) else (-1))
Algorithms / 백준 2644번 파이썬
Author And Source
이 문제에 관하여(Algorithms / 백준 2644번 파이썬), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kon6443/Algorithms-백준-2644번-파이썬저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)