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 < M) and (0 <= X < N):
if graph[Y][X] == '4':
return graph[y][x]+1
if graph[Y][X] == '1':
q.append((Y, X))
graph[Y][X] = graph[y][x]+1
M, N, M1, M2 = map(int, input().split())
graph = [input().split() for _ in range(M)]
d = [(-M1, -M2), (-M1, M2), (M1, -M2), (M1, M2), (-M2, -M1), (-M2, M1), (M2, -M1), (M2, M1)]
for i in range(M):
for j in range(N):
if graph[i][j] == '3':
print(bfs(i, j))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 11448번 Ga(python) (0) | 2021.03.18 |
---|---|
백준 알고리즘 6798번 Knight Hop(python) (0) | 2021.03.18 |
백준 알고리즘 6004번 The Chivalrous Cow(python) (0) | 2021.03.18 |
백준 알고리즘 17266번 어두운 굴다리(python) (0) | 2021.03.18 |
백준 알고리즘 17219번 비밀번호 찾기(python) (0) | 2021.03.18 |