프로그래머스 게임 맵 최단거리
풀이
- 시작점을 기준으로 bfs 돌려서 큐에 넣을 때마다 이전거리 + 1씩 해줘서 넣어준다.
- 도착지점 거리를 리턴해준다
내가 푼 풀이
import java.util.*;
class Pos{
int x;
int y;
public Pos(int y, int x) { this.y = y; this.x = x;}
}
class Solution {
static int dx[] = {0, 0, -1, 1};
static int dy[] = {-1, 1, 0, 0};
static int visited[][];
public int solution(int[][] maps) {
return bfs(maps,new Pos(0,0));
}
public static int bfs(int[][] maps, Pos start){
Queue<Pos> queue = new LinkedList<>();
queue.add(start);
visited = new int[maps.length][maps[0].length];
visited[start.y][start.x] = 1;
while(!queue.isEmpty()){
Pos cur = queue.poll();
for(int i=0; i<4; i++){
int nextY = cur.y + dy[i];
int nextX = cur.x + dx[i];
if(nextX >=0 && nextX < maps[0].length && nextY >=0 && nextY < maps.length){
if(visited[nextY][nextX] == 0 && maps[nextY][nextX]==1){
visited[nextY][nextX] = visited[cur.y][cur.x] + 1;
queue.add(new Pos(nextY, nextX));
}
}
}
}
return (visited[visited.length-1][visited[0].length-1] == 0) ? -1 : visited[visited.length-1][visited[0].length-1];
}
}
'PS > programmers' 카테고리의 다른 글
프로그래머스 타겟 넘버 (0) | 2022.06.27 |
---|---|
프로그래머스 두 개 뽑아서 더하기 (0) | 2022.06.27 |
프로그래머스 실패율 (0) | 2022.06.27 |
프로그래머스 1차 다트 게임 (0) | 2022.06.27 |
프로그래머스 카카오 프렌즈 컬러링 북 (0) | 2022.06.27 |