import sys
input = sys.stdin.readline
def dfs(v):
print(v,end=" ")
visited[v] = 1
for i in range(1, n+1):
if visited[i] == 0 and graph[v][i] == 1:
dfs(i)
def bfs(v):
queue = [v]
visited[v] = 0
while(queue):
v = queue[0]
print(v,end=' ')
del queue[0]
for i in range(1, n+1):
if visited[i] == 1 and graph[v][i] == 1:
queue.append(i)
visited[i] = 0
n,m,v = map(int,input().split())
graph = [[0] * (n+1) for i in range(n+1)]
visited = [0 for i in range(n+1)]
for i in range(m):
x,y = map(int,input().split())
graph[x][y] = 1
graph[y][x] = 1
dfs(v)
print()
bfs(v)
'문제풀이 > 백준(Boj) 문제풀이' 카테고리의 다른 글
[백준][그리디 알고리즘] 1026. 보물(파이썬/Python) (0) | 2021.09.30 |
---|---|
[백준][수학/문자열/정렬] 1755. 숫자놀이 (파이썬/Python) (0) | 2021.09.30 |
[백준][정수론 및 조합론] 1676. 팩토리얼 0의 개수 (파이썬/Python) (0) | 2021.09.28 |
[백준][이분 탐색] 1920. 수 찾기 (파이썬/Python) (0) | 2021.09.27 |
[백준][정수론 및 조합론] 9375. 패션왕 신해빈 (파이썬/Python) (0) | 2021.09.26 |