https://www.acmicpc.net/problem/2178
N×M크기의 배열로 표현되는 미로가 있다.
1 0 1 1 1 1
1 0 1 0 1 0
1 0 1 0 1 1
1 1 1 0 1 1
미로에서 1은 이동할 수 있는 칸을 나타내고, 0은 이동할 수 없는 칸을 나타낸다. 이러한 미로가 주어졌을 때, (1, 1)에서 출발하여 (N, M)의 위치로 이동할 때 지나야 하는 최소의 칸 수를 구하는 프로그램을 작성하시오. 한 칸에서 다른 칸으로 이동할 때, 서로 인접한 칸으로만 이동할 수 있다.
위의 예에서는 15칸을 지나야 (N, M)의 위치로 이동할 수 있다. 칸을 셀 때에는 시작 위치와 도착 위치도 포함한다.
첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. 다음 N개의 줄에는 M개의 정수로 미로가 주어진다. 각각의 수들은 붙어서 입력으로 주어진다.
첫째 줄에 지나야 하는 최소의 칸 수를 출력한다. 항상 도착위치로 이동할 수 있는 경우만 입력으로 주어진다.
import java.util.*;
import java.io.*;
class miro {
int x;
int y;
miro(int x, int y) {
this.x = x;
this.y = y;
}
}
public class boj_2178 {
static int M;
static int N;
static int[] dx = {-1, 1, 0, 0};
static int[] dy = {0, 0, -1, 1};
static int[][] board;
static boolean[][] visit;
static Queue<miro> que;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
board = new int[N][M];
visit = new boolean[N][M];
que = new LinkedList<>();
for (int i = 0; i < N; i++) {
String s = br.readLine();
for (int j = 0; j < M; j++) {
board[i][j] = s.charAt(j) - '0';
}
}
que.add(new miro(0, 0));
visit[0][0] = true;
BFS();
System.out.println(board[N-1][M-1]);
}
public static void BFS() {
while (!que.isEmpty()) {
miro t = que.remove();
int x = t.x;
int y = t.y;
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (nx >= 0 && ny >= 0 && nx < N && ny < M) {
if (!visit[nx][ny] && board[nx][ny] == 1) {
que.add(new miro(nx, ny));
visit[nx][ny] = true;
board[nx][ny] = board[x][y] + 1;
}
}
}
}
}
}
맞게 푼 것 같은데 틀려서 왜 그런가 하고 다시 읽어보니 입력할 때 공백 없이 값이 입력된다는 걸 고려하지 않았었다. 토마토 문제와 비슷한듯 조금 다른 bfs 문제였다.