코드
from collections import deque
for _ in range(10):
tc, n = map(int, input().split())
arr = list(map(int, input().split()))
graph = [[] for _ in range(100)]
for i in range(0, len(arr)-1, 2):
graph[arr[i]].append(arr[i+1])
q = deque([0])
visited = [False]*100
visited[0] = True
possible = 0
while q:
now = q.popleft()
if now == 99:
possible = 1
break
for nx in graph[now]:
if not visited[nx]:
q.append(nx)
visited[nx] = True
print(f"#{tc} {possible}")
보통 경로는 한 줄에 하나씩 입력해주는데 이 문제는 특이하게 한 줄에 쭉 이어서 해준다.
그것 빼고는 별로 특이한거 없이 BFS로 풀이 가능했다.
'문제풀이 > DFS_BFS' 카테고리의 다른 글
[Python/파이썬] 백준 11322번 Numbers are Easy (0) | 2024.07.13 |
---|---|
[Javascript/자바스크립트] 백준 1260번 DFS와 BFS (0) | 2024.06.20 |
[Python/파이썬] 백준 6593번 상범 빌딩 (0) | 2024.06.07 |
[Python/파이썬] 백준 16920번 확장 게임 (0) | 2024.06.02 |
[Python/파이썬] 백준 1743번 음식물 피하기 (0) | 2024.05.29 |