일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- backjoon
- Combinations
- 자바
- 그리디
- 동적 계획법
- lambda
- Set
- heapq
- 위클리 챌린지
- 추석맞이 코딩챌린지
- python
- programmers
- 재귀함수
- 이분탐색
- BFS
- 정렬
- divmod
- KAKAO BLIND RECRUITMENT
- 프로그래머스
- 정규식
- 다익스트라
- java
- Re
- 수학
- Zip
- 카카오
- dfs
- DateTime
- 파이썬
- 백준
Archives
- Today
- Total
목록게임 맵 최단거리 (1)
상상쓰
[프로그래머스] 게임 맵 최단거리
https://programmers.co.kr/learn/courses/30/lessons/1844 코딩테스트 연습 - 게임 맵 최단거리 [[1,0,1,1,1],[1,0,1,0,1],[1,0,1,1,1],[1,1,1,0,1],[0,0,0,0,1]] 11 [[1,0,1,1,1],[1,0,1,0,1],[1,0,1,1,1],[1,1,1,0,0],[0,0,0,0,1]] -1 programmers.co.kr BFS, 너비 우선 탐색이므로 가장 처음 방문했을 때 계산된 maps[][] 값이 최단 거리가 된다. from collections import deque def solution(maps): answer = -1 n = len(maps) m = len(maps[0]) visit = [[0 for j in ra..
Coding Test
2021. 6. 1. 10:19