[백준] #1260 - DFS와 BFS (파이썬, Python)
DFS와 BFS
https://www.acmicpc.net/problem/1260
내가 쓴 코드
from collections import deque
n, m, v = map(int, input().split())
graph = [[] for _ in range(n + 1)]
visited = [False] * (n + 1)
for _ in range(m):
a, b = map(int, input().split())
graph[a].append(b)
graph[b].append(a)
for i in range(1, n + 1):
graph[i].sort()
def dfs(x):
visited[x] = True
print(x, end=" ")
for nx in graph[x]:
if not visited[nx]:
dfs(nx)
def bfs(x):
q = deque([x])
visited = set([x])
while q:
x = q.popleft()
print(x, end=" ")
for nx in graph[x]:
if nx not in visited:
q.append(nx)
visited.add(nx)
dfs(v)
print()
bfs(v)
Author And Source
이 문제에 관하여([백준] #1260 - DFS와 BFS (파이썬, Python)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ms269/백준-1260-DFS와-BFS-파이썬-Python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)