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 |
Tags
- 스택
- domain model
- 자료구조
- 멘딕스
- 집합
- git
- 가중치없는그래프
- 그래프
- 백트래킹
- 매개변수 탐색
- 재귀
- 반효경교수님
- microflow
- 완전탐색
- Sort
- 프로그래머스
- 알고리즘
- dfs
- 정렬
- lcap
- Mendix
- algorithm
- Recursion
- 자바
- Bruteforce
- MySQL
- 해시맵
- 트리
- SQL
- 이분탐색
Archives
- Today
- Total
728x90
목록덱 (1)
mondegreen
[240330] 알고리즘 리부트 42일차 - 프로그래머스 게임 맵 최단거리 자바
import java.util.*; class Solution { public static Deque dq; public static int dist[][]; public static int n, m; public static class Position{ int r; int c; public Position(int x, int y){ this.r = x; this.c = y; } } public int solution(int[][] maps) { int answer = -1; n = maps.length; m = maps[0].length; dist = new int[n][m]; dist[0][0] = 1; dq = new ArrayDeque(); dq.add(new Position(0, 0)); int..
알고리즘 풀이 및 리뷰/프로그래머스
2024. 3. 30. 11:40
728x90