728x90
반응형
기본적인 BFS 문제이다.
from collections import deque
def bfs(y, x):
q = deque()
q.append((y, x))
graph[y][x] = 0
while q:
y, x = q.popleft()
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < 10) and (0 <= X < 10):
if graph[Y][X] == 'L':
return graph[y][x]
if graph[Y][X] == '.':
q.append((Y, X))
graph[Y][X] = graph[y][x]+1
graph = [list(input()) for _ in range(10)]
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
for i in range(10):
for j in range(10):
if graph[i][j] == 'B':
cnt = bfs(i, j)
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 18232번 텔레포트 정거장(python) (0) | 2021.03.14 |
---|---|
백준 알고리즘 4677번 Oil Deposits(python) (0) | 2021.03.14 |
백준 알고리즘 11123번 양 한마리... 양 두마리...(python) (0) | 2021.03.14 |
백준 알고리즘 6186번 Best Grass(python) (0) | 2021.03.12 |
백준 알고리즘 17806번 아기 상어 2(python) (0) | 2021.03.12 |