본문 바로가기

알고리즘

프로그래머스) 게임 맵 최단거리 -python

https://school.programmers.co.kr/learn/courses/30/lessons/1844

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

전형적인 BFS 문제다

from collections import deque

def solution(maps):
    answer = 0
    col = len(maps)
    row = len(maps[0])
    queue = deque()
    queue.append((0,0))
    dx = [1,-1,0,0]
    dy = [0,0,-1,1]
    while queue:
        x,y = queue.popleft()
        for i in range(4):
            nx = dx[i] + x
            ny = dy[i] + y
            if nx < col and nx >= 0 and ny < row and ny >= 0 and maps[nx][ny] == 1:
                maps[nx][ny] = maps[x][y] + 1
                queue.append((nx,ny))
                
    return -1 if maps[len(maps) -1][len(maps[0]) - 1] == 1 else maps[len(maps) -1][len(maps[0]) - 1]