👀 문제
https://www.acmicpc.net/problem/1012
👊 도전
1. 설계
- (N, M)까지의 최단거리를 구해야하므로 BFS를 사용한다.
- map에 미로를 입력하고, 카운트를 갱신하여 map에 저장한다.
- BFS 탐색이 끝난 후 (N, M)에는 최단거리가 저장되어있다.
2. 구현 (성공 코드)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
/**
* @author HEESOO
*
*/
class Node{
int x;
int y;
public Node(int x, int y) {
this.x=x;
this.y=y;
}
}
public class Main {
static int n, m;
static int[][] map;
static boolean[][] visit;
public static void bfs() {
Queue<Node> q=new LinkedList<>();
q.offer(new Node(1,1));
visit[1][1]=true;
while(!q.isEmpty()) {
Node node=q.poll();
int cnt=map[node.x][node.y]+1;
int[] dotX= {0,0,-1,1};
int[] dotY= {-1,1,0,0};
for(int i=0;i<4;i++) {
int xx=node.x+dotX[i];
int yy=node.y+dotY[i];
if(0<xx&&xx<=n&&0<yy&&yy<=m) {
if(map[xx][yy]!=0&&!visit[xx][yy]) {
visit[xx][yy]=true;
map[xx][yy]=cnt;
q.offer(new Node(xx, yy));
}
}
}
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
n=scan.nextInt();
m=scan.nextInt();
map=new int[n+1][m+1];
visit=new boolean[n+1][m+1];
for(int i=1;i<=n;i++) {
String str=scan.next();
for(int j=1;j<=m;j++) {
map[i][j]=str.charAt(j-1)-'0';
}
}
bfs();
System.out.println(map[n][m]);
}
}
3. 결과
🤟 성공 🤟
visit[xx][yy]=true를 다른 곳에서 하여 메모리 초과가 발생하였다.
4. 설명
- BFS를 구현한다
- 최단거리를 구해야하므로 BFS 탐색을 사용한다.
- 처음 시작점인 (1,1)을 큐에 넣고 while문을 실행한다. (1,1)에서 상하좌우로 움직여 갈 수 있는 곳에 현재 노드 값+1(cnt+1)을 저장한다. 그리고 그 노드들을 큐에 넣어 탐색 순서를 정해준다.
- 이렇게 해서 (N, M)까지의 최단거리를 구할 수 있고, map[n][m]에 최단경로 값이 저장된다.
👏 해결 완료!
- [백준,BOJ 2178] 미로 탐색(JAVA 구현) https://fbtmdwhd33.tistory.com/31