작성
·
245
0
package DFS_BFS;
import java.util.Scanner;
public class _08_11 {
static int[][] board;
static int[] dx = {-1, 0, 1, 0};
static int[] dy = {0, -1, 0, 1}; // 좌, 상, 우, 하
static int answer = Integer.MAX_VALUE;
public void BFS(int L, int x, int y) {
if (L >= answer) return;
if (x == 7 && y == 7) {
answer = Math.min(answer, L);
} else {
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i]; // 좌상우하
if (nx >= 1 && nx <= 7 && ny >= 1 && ny <= 7 && board[nx][ny] == 0){
board[nx][ny] = 1;
BFS(L + 1, nx, ny);
board[nx][ny] = 0;
}
}
}
}
public static void main(String[] args) {
_08_11 T = new _08_11();
Scanner sc = new Scanner(System.in);
board = new int[8][8];
for (int i = 1; i <= 7; i++) {
for (int j = 1; j <= 7; j++) {
board[i][j] = sc.nextInt();
}
}
board[1][1] = 1;
T.BFS(0,1,1);
if (answer == Integer.MAX_VALUE) System.out.println(-1);
else System.out.println(answer);
}
}
해설하신 Queue 를 이용하지 않고 풀었는데 해설과 비교하였을때 괜찮은 코드인가요?
답변 1
0
안녕하세요^^
위에 코드는 깊이우선탐색(DFS)로 모든 경로를 다 확인하는 완전탐색방법입니다. Queue를 이용하는 방법보다 시간복잡도가 좋지 않습니다. 이 문제는 7*7 격자만 들어와서 시간복잡도가 좋지 않다는 것을 느낄 수 없지만 20*20 정도의 격자판이 들어오면 Queue를 사용한 것과 비교하면 바로 느낄 수 있을 겁니다.
위 코드를 20*20격자판에서 경로를 찾는 코드로 수정하고 아래 입력을 넣어보세요. 아마 무한루프에 빠진 것 처럼 보일겁니다.
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0
0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0
0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0