728x90
- N x M 직사각형 미로
- (1, 1) 시작 위치
- (N, M) 출구
- 한 번에 한 칸씩 이동
- 0 은 괴몰이 있는 부분
- 1 은 괴물이 없는 부분
- 탈출을 위해 움직여야 하는 최소 칸의 개수
from collections import deque
n, m = map(int, input().split())
graph = []
for i in range(n):
graph.append(list(map(int, input())))
# 상하좌우
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
# bfs 함수
def bfs(x, y):
queue = deque()
queue.append((x, y))
while queue:
x, y = queue.popleft()
# 현재 위치에서 상하좌우 확인
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if nx < 0 or ny < 0 or nx >= n or ny >= m:
continue
if graph[nx][ny] == 0:
continue
if graph[nx][ny] == 1:
graph[nx][ny] = graph[x][y] + 1
queue.append((nx, ny))
return graph[n-1][m-1]
print(bfs(0, 0))
반응형
'전.py' 카테고리의 다른 글
[python] 위에서 아래로 (0) | 2022.07.12 |
---|---|
[python] 정렬 (0) | 2022.07.12 |
[python] 음료수 얼려 먹기 (0) | 2022.07.11 |
[python] 백준 1260 DFS와 BFS (0) | 2022.07.08 |
[python] DFS & BFS (0) | 2022.07.08 |