728x90
반응형
기본적인 DFS & BFS 문제이다.
DFS 풀이
import sys
sys.setrecursionlimit(3000000)
def dfs(y, x, K, n):
graph[y][x] = K
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < R) and (0 <= X < C) and graph[Y][X] == n:
dfs(Y, X, K, n)
R, C = map(int, input().split())
graph = [list(input()) for _ in range(R)]
Y, X, K = map(int, input().split())
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
dfs(Y, X, str(K), graph[Y][X])
for line in graph:
print(''.join(line))
BFS 풀이
from collections import deque
def bfs(y, x, K):
q = deque()
q.append((y, x))
n = graph[y][x]
graph[y][x] = K
while q:
y, x = q.popleft()
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < R) and (0 <= X < C) and graph[Y][X] == n:
q.append((Y, X))
graph[Y][X] = K
R, C = map(int, input().split())
graph = [list(input()) for _ in range(R)]
Y, X, K = map(int, input().split())
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
bfs(Y, X, str(K))
for line in graph:
print(''.join(line))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 15092번 Sheba’s Amoebas(python) (0) | 2021.03.14 |
---|---|
백준 알고리즘 14248번 점프 점프(python) (0) | 2021.03.14 |
백준 알고리즘 8061번 Bitmap(python) (0) | 2021.03.14 |
백준 알고리즘 18404번 현명한 나이트(python) (0) | 2021.03.14 |
백준 알고리즘 18243번 Small World Network(python) (0) | 2021.03.14 |