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 | 31 |
Tags
- SQL
- 반효경교수님
- 가중치없는그래프
- MySQL
- 이분탐색
- Sort
- microflow
- 백트래킹
- 완전탐색
- 자료구조
- 프로그래머스
- domain model
- git
- 스택
- lcap
- 트리
- 그래프
- 자바
- algorithm
- 집합
- 해시맵
- 매개변수 탐색
- Mendix
- Bruteforce
- 정렬
- 재귀
- dfs
- 멘딕스
- 알고리즘
- Recursion
Archives
- Today
- Total
mondegreen
[240330] 알고리즘 리부트 42일차 - 프로그래머스 게임 맵 최단거리 자바 본문
반응형
import java.util.*;
class Solution {
public static Deque<Position> 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<Position>();
dq.add(new Position(0, 0));
int nr;
int nc;
while(!dq.isEmpty()){
int [][] drc = {{-1,0},{1,0},{0,-1},{0,1}};
Position curr = dq.poll();
for(int d = 0; d < 4; d++){
nr = curr.r + drc[d][0];
nc = curr.c + drc[d][1];
if(nr < 0||nc < 0|| nr > n-1 || nc > m-1 ||
dist[nr][nc]!=0 || maps [nr][nc] == 0) continue;
dq.add(new Position(nr, nc));
dist[nr][nc] = dist[curr.r][curr.c]+1;
}
}
answer = dist[n-1][m-1]!=0 ? dist[n-1][m-1] : -1;
return answer;
}
}
[효율성 테스트 실패 코드]
import java.util.*;
class Solution {
public static Deque<Position> dq;
public static boolean visited[][];
public static int n, m;
public static class Position{
int r;
int c;
int dist;
public Position(int x, int y, int d){
this.r = x;
this.c = y;
this.dist = d;
}
}
public int solution(int[][] maps) {
int answer = -1;
n = maps.length;
m = maps[0].length;
visited = new boolean[n][m];
dq = new ArrayDeque<Position>();
dq.add(new Position(0, 0, 1));
int nr;
int nc;
while(!dq.isEmpty()){
int [][] drc = {{-1,0},{1,0},{0,-1},{0,1}};
Position curr = dq.poll();
if(curr.r == n-1 && curr.c == m-1){
answer = curr.dist;
break;
}
visited[curr.r][curr.c] = true;
for(int d = 0; d < 4; d++){
nr = curr.r + drc[d][0];
nc = curr.c + drc[d][1];
if(nr < 0||nc < 0|| nr > n-1 || nc > m-1 ||
visited[nr][nc] || maps [nr][nc] == 0) continue;
dq.add(new Position(nr, nc, curr.dist + 1));
}
}
return answer;
}
}
반응형
'알고리즘 풀이 및 리뷰 > 프로그래머스' 카테고리의 다른 글
[240402] 알고리즘 리부트 44일차 - 프로그래머스 전력망 둘로 나누기 자바 (0) | 2024.04.03 |
---|---|
[240401] 알고리즘 리부트 43일차 - 프로그래머스 배달 자바 (0) | 2024.04.01 |
[240329] 알고리즘 리부트 41일차 - 프로그래머스 섬 연결하기 자바 (0) | 2024.03.29 |
[240329] 알고리즘 리부트 41일차 - 프로그래머스 영어 끝말잇기 자바 (0) | 2024.03.29 |
[240328] 알고리즘 리부트 40일차 - 프로그래머스 다단계 칫솔 판매 자바 (0) | 2024.03.28 |