-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBOJ_DFS와BFS.py
52 lines (42 loc) · 991 Bytes
/
BOJ_DFS와BFS.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""
Graph DFS, BFS
"""
import sys
from collections import defaultdict, deque
if __name__ == '__main__':
graph = defaultdict(list)
visited = {}
N, M, V = map(int, input().split())
for _ in range(M):
i, j = map(int, sys.stdin.readline().rstrip().split())
graph[i].append(j)
graph[j].append(i)
for i in range(1, N+1):
visited[i] = False
for k in graph:
graph[k].sort()
def dfs(v):
if visited[v]:
return
print(v, end=' ')
visited[v] = True
for a in graph[v]:
dfs(a)
def bfs(v):
que = deque()
que.append(v)
while que:
n = que.popleft()
if visited[n]:
continue
print(n, end=' ')
visited[n] = True
for a in graph[n]:
que.append(a)
dfs(V)
print()
for v in visited:
visited[v] = False
bfs(V)
print()
# print(graph)