728x90
반응형
기본적인 BFS 문제이다.
from collections import deque
def bfs(y, x):
q = deque()
q.append((y, x))
while q:
y, x = q.popleft()
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < H) and (0 <= X < W) and graph[Y][X] == 'T':
q.append((Y, X))
graph[Y][X] = 'S'
while 1:
W, H = map(int, input().split())
if W == H == 0:
break
graph = [list(input()) for _ in range(H)]
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
for i in range(H):
for j in range(W):
if graph[i][j] == 'S':
bfs(i, j)
for line in graph:
print(''.join(line))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 19621번 회의실 배정 2(python) (0) | 2021.03.16 |
---|---|
백준 알고리즘 2210번 숫자판 점프(python) (0) | 2021.03.16 |
백준 알고리즘 6031번 Feeding Time(python) (0) | 2021.03.14 |
백준 알고리즘 10917번 Your life(python) (0) | 2021.03.14 |
백준 알고리즘 5931번 Cow Beauty Pageant(python) (0) | 2021.03.14 |