백준 온라인 저지/Gold

[BOJ] 6593 - 상범 빌딩

jooona 2021. 3. 23. 12:03
반응형

개인적인 풀이일 뿐, 최적의 정답이 아님을 알려드립니다.

 

문제

www.acmicpc.net/problem/6593

 

6593번: 상범 빌딩

당신은 상범 빌딩에 갇히고 말았다. 여기서 탈출하는 가장 빠른 길은 무엇일까? 상범 빌딩은 각 변의 길이가 1인 정육면체(단위 정육면체)로 이루어져있다. 각 정육면체는 금으로 이루어져 있어

www.acmicpc.net

난이도: 골드 5

사용언어: JAVA

 

풀이

전형적으로 BFS를 사용하여 풀 수 있는 문제이며, 단 한 가지 다른 점은 일반적인 BFS 문제는 2차원 배열에서 풀이를 한다면, 위의 문제는 3차원 배열에서 풀이를 한다는 점입니다. 따라서 이동할 수 있는 장소를 표현할 때 한 차원을 더 표현해주어야 하기 때문에 조금 헷갈리는 부분이 있을 수 있을 뿐, 어렵게 접근할 필요는 없습니다.

 

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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import java.io.*;
import java.util.*;
 
class Main {
 
    static public class position {
        int x;
        int y;
        int z;
 
        public position(int x, int y, int z) {
            this.x = x;
            this.y = y;
            this.z = z;
        }
    }
 
    static Queue<position> q = new LinkedList<>();
    static char[][][] arr;
    static int L, R, C;
    static int[] dx = {-100001};
    static int[] dy = {0-10100};
    static int[] dz = {00-1010};
 
    public static void bfs(position p) {
        int nx, ny, nz;
        for (int i = 0; i < 6; i++) {
            nx = p.x + dx[i];
            ny = p.y + dy[i];
            nz = p.z + dz[i]; // 이동할 위치
 
            if (arr[nx][ny][nz] == '.' || arr[nx][ny][nz] == 'E') { //.이거나 E인 공간으로만 이동
                if (arr[nx][ny][nz] == '.')
                    arr[nx][ny][nz] = 'S'; // 한 번 온 곳을 다시 검사하지 않기 위해
                q.add(new position(nx, ny, nz)); // 큐에 삽입
            }
        }
    }
 
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
        StringTokenizer st = new StringTokenizer(br.readLine());
        L = Integer.parseInt(st.nextToken());
        R = Integer.parseInt(st.nextToken());
        C = Integer.parseInt(st.nextToken());
 
        while (!(L == 0 && R == 0 && C == 0)) {
            arr = new char[L + 2][R + 2][C + 2];
            String s;
            int cnt = 0;
            for (int i = 1; i <= L; i++) {
                for (int j = 1; j <= R; j++) {
                    s = br.readLine();
                    for (int k = 1; k <= C; k++) {
                        arr[i][j][k] = s.charAt(k - 1);
                        if (arr[i][j][k] == 'S') { // 상범의 초기 위치 저장
                            q.add(new position(i, j, k));
                        }
                    }
                }
                s = br.readLine();
            }
 
            int q_size;
            int flag = 0;
            while (!q.isEmpty()) {
                q_size = q.size();
                for (int i = 0; i < q_size; i++) {
                    position p = q.poll();
                    if (arr[p.x][p.y][p.z] == 'E') { // E에 도달하면 종료
                        bw.write("Escaped in " + String.valueOf(cnt) + " minute(s).\n");
                        flag = 1;
                        break;
                    }
 
                   bfs(p); // 아직 E에 도달하지 못했다면, BFS 수행
                }
                if (flag == 1)
                    break;
                cnt++;
            }
            if (flag == 0) { // E에 도달하지 못하고 반복문이 종료
                bw.write("Trapped!\n");
            }
 
            st = new StringTokenizer(br.readLine());
            L = Integer.parseInt(st.nextToken());
            R = Integer.parseInt(st.nextToken());
            C = Integer.parseInt(st.nextToken());
           q.clear(); // 다음 테스트 케이스로 넘어가기 전에 큐를 초기화
        }
        bw.flush();
        bw.close();
        br.close();
    }
}
cs

 

반응형

'백준 온라인 저지 > Gold' 카테고리의 다른 글

[BOJ] 14891 - 톱니바퀴  (0) 2021.04.11
[BOJ] 14499 - 주사위 굴리기  (0) 2021.04.05
[BOJ] 9935 - 문자열 폭발  (0) 2021.03.22
[BOJ] 4179 - 불!  (0) 2021.03.17
[BOJ] 1446 - 지름길  (0) 2021.03.16