반응형
https://www.acmicpc.net/problem/2178
입력 받은 배열에서
(0,0)에서 다른 좌표로 이동했을 때 그 좌표까지 이동 했을 때 이동 거리를 대입.
import java.io.*;
import java.util.*;
public class Main {
static int N, M;
static int[][] arr;
static boolean[][] check;
static int[] moveX = { 0, 0, 1, -1 };
static int[] moveY = { 1, -1, 0, 0 };
static Queue<point> q = new LinkedList<>();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] str = br.readLine().split(" ");
N = Integer.parseInt(str[0]);
M = Integer.parseInt(str[1]);
arr = new int[N][M];
check = new boolean[N][M];
for (int i = 0; i < N; i++) {
String[] s = br.readLine().split("");
for (int j = 0; j < M; j++) {
arr[i][j] = Integer.parseInt(s[j]);
}
}
check[0][0] = true;
bfs(0, 0);
System.out.println(arr[N - 1][M - 1]);
br.close();
}// main()
public static void bfs(int x, int y) {
q.add(new point(x, y));
while (!q.isEmpty()) {
point s = q.poll();
for (int i = 0; i < 4; i++) {
int nextX = s.x + moveX[i];
int nextY = s.y + moveY[i];
if (nextX < 0 || nextY < 0 || nextX >= N || nextY >= M) {
continue;
}
if (check[nextX][nextY] || arr[nextX][nextY] == 0) {
continue;
}
q.add(new point(nextX, nextY));
arr[nextX][nextY] = arr[s.x][s.y] + 1;
check[nextX][nextY] = true;
}
}
}
}// bfs()
class point {
int x;
int y;
point(int x, int y) {
this.x = x;
this.y = y;
}// class point
}// class Main
728x90
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
[Java] 백준 1149 : RGB거리 (0) | 2023.02.01 |
---|---|
백준 2667 : 단지번호붙이기 _자바 Java (0) | 2023.02.01 |
백준 1406 : 에디터 _자바 Java (0) | 2023.01.31 |
백준 2630 : 색종이 만들기 _자바 Java (0) | 2023.01.30 |
백준 11725 : 트리의 부모 찾기 _자바 Java (0) | 2023.01.29 |
댓글