[7/20] 미로 탈출

이경준·2021년 7월 20일
0

코테

목록 보기
75/140
post-custom-banner

BFS (152) 실패

효율적인 코드

from collections import deque

n, m = map(int, input().split())
graph = []
for _ in range(n):
    graph.append(list(map(int, input())))
    
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]

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))

피드백

  • 경로가 하나밖에 없는 (무조건 탈출할 수 있는) 그래프가 주어진다고 했는데 문제를 제대로 읽지 않았다...
profile
The Show Must Go On
post-custom-banner

0개의 댓글