N×M크기의 배열로 표현되는 미로가 있다.
미로에서 1은 이동할 수 있는 칸을 나타내고, 0은 이동할 수 없는 칸을 나타낸다. 이러한 미로가 주어졌을 때, (1, 1)에서 출발하여 (N, M)의 위치로 이동할 때 지나야 하는 최소의 칸 수를 구하는 프로그램을 작성하시오. 한 칸에서 다른 칸으로 이동할 때, 서로 인접한 칸으로만 이동할 수 있다.
위의 예에서는 15칸을 지나야 (N, M)의 위치로 이동할 수 있다. 칸을 셀 때에는 시작 위치와 도착 위치도 포함한다.
첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. 다음 N개의 줄에는 M개의 정수로 미로가 주어진다. 각각의 수들은 붙어서 입력으로 주어진다.
첫째 줄에 지나야 하는 최소의 칸 수를 출력한다. 항상 도착위치로 이동할 수 있는 경우만 입력으로 주어진다.
4 6
101111
101010
101011
111011
15
4 6
110110
110110
111111
111101
9
2 25
1011101110111011101110111
1110111011101110111011101
38
7 7
1011111
1110001
1000001
1000001
1000001
1000001
1111111
13
import java.awt.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.Queue;
import java.util.StringTokenizer;
public class Main {
static int result=Integer.MAX_VALUE;
static int[][] moves={{0,1},{0,-1},{1,0},{-1,0}};
static int[][] map;
static int[][] visited;
public static class Point{
int x,y;
int dis;
public Point(int x,int y,int dis){
this.x=x;
this.y=y;
this.dis=dis;
}
}
public static void main(String[] args) throws IOException {
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st=new StringTokenizer(br.readLine());
int N=Integer.parseInt(st.nextToken());
int M=Integer.parseInt(st.nextToken());
map=new int[N][M];
visited=new int[N][M];
for(int i=0;i<N;i++){
String[] tmp=br.readLine().split("");
for(int j=0;j<M;j++){
map[i][j]=Integer.parseInt(tmp[j]);
}
}
bfs(N,M);
System.out.println(visited[N-1][M-1]);
}
public static void bfs(int N,int M){
Queue<Point> queue=new ArrayDeque<>();
queue.add(new Point(0,0,1));
while(!queue.isEmpty()){
Point p=queue.poll();
for(int i=0;i<4;i++){
int a=p.x+moves[i][0];
int b=p.y+moves[i][1];
if(a<0 || a>=N || b<0 || b>=M) continue;
if(visited[a][b]==0 && map[a][b]==1){
visited[a][b]=p.dis+1;
queue.add(new Point(a,b,p.dis+1));
}
}
}
}
}
미로의 길이 있어야하고 출발점으로부터 몇번째 거쳤는지 체크하면 답을 구할 수 있다.
BFS를 이용해서 지나온 길을 체크하고 해당 위치에 출발점으로부터 거리값을 저장해준다.
Queue에 넣을 값
public static class Point{
int x,y;
int dis;
public Point(int x,int y,int dis){
this.x=x;
this.y=y;
this.dis=dis;
}
}
x좌표, y좌표와 지나온 거리값 변수를 만들어준다.
bfs를 통한 길 체크
public static void bfs(int N,int M){
Queue<Point> queue=new ArrayDeque<>();
queue.add(new Point(0,0,1));
while(!queue.isEmpty()){
Point p=queue.poll();
for(int i=0;i<4;i++){
int a=p.x+moves[i][0];
int b=p.y+moves[i][1];
if(a<0 || a>=N || b<0 || b>=M) continue;
if(visited[a][b]==0 && map[a][b]==1){
visited[a][b]=p.dis+1;
queue.add(new Point(a,b,p.dis+1));
}
}
}
}
처음 큐에 출발지점의 좌표값과 거리값 1을 넣어준다.
상하좌우로 이동해가면서 미로의 길을 찾고 방문하지 않은 길이라면 큐에 넣어주는데 이때, 큐에서 뽑은 거리값에서 한번 더 이동한 것이기 때문에 +1
해준다.
기존의 bfs 코드를 이용하면 쉽게 풀 수 있는 문제였다. 방문한 표시를 boolean형식으로 해주지 않고 지나온 거리값으로 해주면 이 문제의 답을 쉽게 구할 수 있다.