-
[BOJ] 미로만들기Algorithm/BOJ 2020. 10. 22. 15:02
[2665] 미로만들기
Solution
- 2차원 배열에 대해서 다익스트라로 풀이하는 문제
- map[0][0]을 시작점으로 distance[0][0] = 0 으로 할당한 뒤, 4방향에 대해 흰방일 경우에는 방 교체 횟수를 그대로 update하고, 검은방일 경우에는 이전 방 교체 횟수 + 1한 값으로 update 하고 q에 add한다.
- 마지막으로 distance[n-1][n-1] 출력
소스코드
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.*;public class Main {static int n;static int[][] map, distance;static int[][] dir = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};static Queue<Dot> q;static class Dot {private int x;private int y;public Dot(int x, int y) {this.x = x;this.y = y;}}public static void main(String[] args) throws IOException {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));n = stoi(br.readLine());map = new int[n][n];distance = new int[n][n];for (int i = 0; i < n; i++) {char[] line = br.readLine().toCharArray();for (int j = 0; j < n; j++) {map[i][j] = line[j] - '0';}}for (int i = 0; i < n; i++) {Arrays.fill(distance[i], Integer.MAX_VALUE);}dijkstra(new Dot(0, 0));System.out.println(distance[n-1][n-1]);}static void dijkstra(Dot dot) {q = new LinkedList<>();q.add(dot);distance[dot.x][dot.y] = 0;while (!q.isEmpty()) {Dot cur = q.poll();int nx, ny;for (int i = 0; i < 4; i++) {nx = cur.x + dir[i][0];ny = cur.y + dir[i][1];if (nx < 0 || ny < 0 || nx >= n || ny >= n) continue;if (map[nx][ny] == 0) {if (distance[nx][ny] > distance[cur.x][cur.y] + 1) {distance[nx][ny] = distance[cur.x][cur.y] + 1;q.offer(new Dot(nx,ny));}} else {if (distance[nx][ny] > distance[cur.x][cur.y]) {distance[nx][ny] = distance[cur.x][cur.y];q.offer(new Dot(nx,ny));}}}}}private static int stoi(String s) {return Integer.parseInt(s);}}cs 'Algorithm > BOJ' 카테고리의 다른 글
[BOJ] 택배 (0) 2020.10.24 [BOJ] 찾기 (0) 2020.10.23 [BOJ] 복도 뚫기 (0) 2020.10.21 [BOJ] 도시 분할 계획 (0) 2020.10.19 [BOJ] 녹색 옷 입은 애가 젤다지? (0) 2020.10.19