-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6593.cpp
102 lines (76 loc) · 2.05 KB
/
6593.cpp
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
//
// Created by 융미 on 2019-05-03.
//6593 상범 빌딩
#include <iostream>
#include <tuple>
#include <queue>
#include <cstring>
using namespace std;
#define MAX 30
int dx[6] = {1,-1,0,0,0,0};
int dy[6] = {0,0,-1,1,0,0};
int dz[6] = {0,0,0,0,1,-1};
int l,r,c;
tuple<int,int,int> start;
tuple<int,int,int> escape;
int dis[MAX][MAX][MAX];
char arr[MAX][MAX][MAX];
void initMEM(){
memset(dis,-1,sizeof(dis));
memset(arr,' ', sizeof(arr));
}
void bfs(){
queue<tuple<int,int,int>> q;
q.push(start);
dis[get<0>(start)][get<1>(start)][get<2>(start)] = 0;
while(!q.empty())
{
auto cur = q.front();
q.pop();
int z = get<0>(cur);
int x = get<1>(cur);
int y = get<2>(cur);
for(int i = 0; i<6; i++)
{
int nz = z + dz[i];
int nx = x + dx[i];
int ny = y + dy[i];
if(nx < 0 || nx >= r || ny < 0 || ny >= c || nz < 0 || nz >= l) continue;
if(dis[nz][nx][ny] != -1) continue;
if(arr[nz][nx][ny] == '#') continue;
q.push(make_tuple(nz,nx,ny));
dis[nz][nx][ny] = dis[z][x][y] + 1;
}
}
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
char t;
while(true){
cin >> l >> r >> c;
if(l == 0 && r == 0 && c == 0) break;
initMEM();
for(int i = 0; i<l; i++)
{
for(int j = 0; j<r; j++)
{
for(int k = 0; k<c; k++)
{
cin >> t;
arr[i][j][k] = t;
if(arr[i][j][k] == 'S')
start = make_tuple(i,j,k);
else if(arr[i][j][k] == 'E')
escape = make_tuple(i,j,k);
}
}
}
bfs();
if(dis[get<0>(escape)][get<1>(escape)][get<2>(escape)] != -1){
cout << "Escaped in " << dis[get<0>(escape)][get<1>(escape)][get<2>(escape)] << " minute(s)." << '\n';
}
else cout << "Trapped!"<< '\n';
}
return 0;
}