Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬
- 알고리즘
- 무한정 대기
- 리눅스
- 프로그래머스
- 기본키 전략
- Git
- compgen
- 티스토리챌린지
- 은행원알고리즘
- 컴파일 타임 상수
- DTO
- intelij spring config
- m:n
- 쉘 스크립트
- 쿠키
- 편향된 지수
- 오블완
- API
- BindingResult
- 백준
- 런타임 상수
- @SubscribeMapping
- application layer
- 커밋 되돌리기
- JDBC
- @Autowired
- spring
- allocationSize
- JPA
Archives
- Today
- Total
목록게임 맵 최단거리 파이썬 (1)
둘셋 개발!
[알고리즘] 게임 맵 최단거리 - bfs/dfs
✏️ 문제 링크: https://school.programmers.co.kr/learn/courses/30/lessons/1844 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr ✏️ 소스코드v1 (정확도 100%, 효율성 0%) - dfs from collections import deque INF=10001 dx=[-1,0,1,0] dy=[0,-1,0,1] def solution(maps): n = len(maps) m = len(maps[0]) def dfs(x,y,n,m,cnt): if x == n-1 and y == m-1: #print("도달",..
알고리즘
2022. 8. 14. 13:34