일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- AI Tech 4기
- 백엔드
- 레벨2
- Naver boostcamp
- 프로그래머스
- 풀스택
- 대회
- Django
- 서블릿
- 부스트캠프
- 웹
- cs50
- 서버
- 장고
- 구현
- 웹 프로그래밍
- 백준
- 2021 Dev-matching 웹 백엔드 개발자
- BOJ
- 네이버
- 파이썬
- P Stage
- boostcourse
- AI Tech
- Naver boostcourse
- sts
- 프로그래밍
- QNA 봇
- Customer service 구현
- 4기
Archives
- Today
- Total
daniel7481의 개발일지
[프로그래머스]게임 맵 최단거리 본문
반응형
https://school.programmers.co.kr/learn/courses/30/lessons/1844
풀이
간단한 최단거리 문제다. 원래는 이동할때마다 원래 칸에서 +1해서 map에 저장하면서 풀수도 있지만, 나는 cnt를 패러미터로 구하는게 더 편해서 cnt를 패러미터로 넣어주고 만약 n-1, m-1에 다다르면 break해주는 식으로 해주었다.
from collections import deque
def solution(maps):
answer = -1
visited = [[False for _ in range(len(maps[0]))]for _ in range(len(maps))]
q = deque()
q.append([0, 0, 1])
visited[0][0] = True
flag = False
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
while q:
x, y, cnt = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if nx < 0 or ny < 0 or nx >= len(maps) or ny >= len(maps[0]):
continue
if visited[nx][ny]:
continue
if nx == len(maps)-1 and ny == len(maps[0])-1:
flag = True
answer = cnt+1
break
if maps[nx][ny] == 1:
q.append([nx, ny, cnt+1])
visited[nx][ny] = True
if flag:
break
return answer
반응형
'프로그래머스' 카테고리의 다른 글
[프로그래머스]섬 연결하기 (0) | 2022.07.31 |
---|---|
[프로그래머스]소수 찾기 (0) | 2022.07.31 |
[프로그래머스]네트워크 (0) | 2022.07.29 |
[프로그래머스]디스크 컨트롤러 (0) | 2022.07.28 |
[프로그래머스]타겟 넘버 (0) | 2022.07.21 |