Game Develop

[Algorithm] Baekjoon 6593번 : 상범 빌딩 본문

Algorithm/Baekjoon

[Algorithm] Baekjoon 6593번 : 상범 빌딩

MaxLevel 2023. 2. 27. 02:15

https://www.acmicpc.net/problem/6593

 

6593번: 상범 빌딩

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

www.acmicpc.net

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
98
99
100
101
102
103
104
105
106
107
108
109
110
struct Node
{
    int z;
    int y;
    int x;
    int count;
};
 
bool visited[31][31][31];
int dir[6][3= { {0,-1,0}, {0,1,0},{0,0,-1},{0,0,1},{-1,0,0},{1,0,0} };
int l, r, c; // z, y, x 검사값
int sz, sy, sx, dz, dy, dx;
 
int BFS()
{
    queue<Node> q;
    q.push({ sz,sy,sx, 0});
 
    while (!q.empty())
    {
        int curZ = q.front().z;
        int curY = q.front().y;
        int curX = q.front().x;
        int curCount = q.front().count;
        q.pop();
 
        if (curZ == dz && curY == dy && curX == dx)
        {
            return curCount;
        }
 
        for (int i = 0; i < 6++i)
        {
            int nextZ = curZ + dir[i][0];
            int nextY = curY + dir[i][1];
            int nextX = curX + dir[i][2];
 
            if (nextZ < 0 || nextZ >= l) continue;
            if (nextY < 0 || nextY >= r) continue;
            if (nextX < 0 || nextX >= c) continue;
            if (visited[nextZ][nextY][nextX]) continue;
 
            visited[nextZ][nextY][nextX] = true;
            q.push({ nextZ,nextY,nextX,curCount + 1 });
        }
    }
 
    return -1;
}
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
    vector<string> results;
 
    while (1)
    {
        memset(visited, falsesizeof(visited));
 
        cin >> l >> r >> c;
 
        if (l == 0 && r == 0 && c == 0)
        {
            break;
        }
 
        for (int i = 0; i < l; ++i) // 각 층 순회
        {
            for (int j = 0; j < r; ++j)
            {
                for (int k = 0; k < c; ++k)
                {
                    char t; 
                    cin >> t;
 
                    if (t == 'S')
                    {
                        sz = i;
                        sy = j;
                        sx = k;
                    }
                    else if (t == 'E')
                    {
                        dz = i;
                        dy = j;
                        dx = k;
                    }
                    else if (t == '#')
                    {
                        visited[i][j][k] = true;
                    }
                }
            }
        }
 
        int result = BFS();
 
        if (result == -1)
        {
            cout << "Trapped!" << endl;
        }
        else
        {
            cout << "Escaped in " << result << " minute(s)." << endl;
        }
    }
}
cs

이전문제에서 방향이 추가 됐다는거 말고는 전혀 다를게 없는 문제이다.

마찬가지로 방문체크용 배열 하나만으로도 충분히 해결할 수 있다.