문제 출처 : www.acmicpc.net/problem/1260
내 풀이
bfs와 dfs를 간단히 구현해보는 문제였다.
import sys
from collections import deque
input = sys.stdin.readline
def dfs(v):
check[v] = 1
print(v, end = ' ')
for i in range(1, n + 1):
if check[i] == 0 and arr[v][i] == 1:
dfs(i)
def bfs(v):
a = [v]
check[v] = 0
while a:
k = a.pop(0)
print(k, end = ' ')
for i in range(1, n + 1):
if check[i] == 1 and arr[k][i] == 1:
a.append(i)
check[i] = 0
n, m, v = map(int, input().split())
arr = [[0]*(n + 1) for _ in range(n + 1)]
for i in range(m):
x, y = map(int, input().split())
arr[x][y] = 1
arr[y][x] = 1
check = [0] * (n + 1)
dfs(v)
print()
bfs(v)
'코딩테스트' 카테고리의 다른 글
[백준][파이썬]18870번: 좌표 압축 (0) | 2021.04.14 |
---|---|
[백준][파이썬]11403번: 경로 찾기 (0) | 2021.04.12 |
[백준][파이썬]2775번: 부녀회장이 될테야 (0) | 2021.04.11 |
[백준][파이썬]11724번: 연결 요소의 개수 (0) | 2021.04.07 |
[백준][파이썬]1966번: 프린터 큐 (0) | 2021.04.07 |