-
Notifications
You must be signed in to change notification settings - Fork 814
/
Copy path1091. Acute Stroke (30) .cpp
63 lines (62 loc) · 1.58 KB
/
1091. Acute Stroke (30) .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
#include <cstdio>
#include <queue>
using namespace std;
struct node {
int x, y, z;
};
int m, n, l, t;
int X[6] = {1, 0, 0, -1, 0, 0};
int Y[6] = {0, 1, 0, 0, -1, 0};
int Z[6] = {0, 0, 1, 0, 0, -1};
int arr[1300][130][80];
bool visit[1300][130][80];
bool judge(int x, int y, int z) {
if(x < 0 || x >= m || y < 0 || y >= n || z < 0 || z >= l) return false;
if(arr[x][y][z] == 0 || visit[x][y][z] == true) return false;
return true;
}
int bfs(int x, int y, int z) {
int cnt = 0;
node temp;
temp.x = x, temp.y = y, temp.z = z;
queue<node> q;
q.push(temp);
visit[x][y][z] = true;
while(!q.empty()) {
node top = q.front();
q.pop();
cnt++;
for(int i = 0; i < 6; i++) {
int tx = top.x + X[i];
int ty = top.y + Y[i];
int tz = top.z + Z[i];
if(judge(tx, ty, tz)) {
visit[tx][ty][tz] = true;
temp.x = tx, temp.y = ty, temp.z = tz;
q.push(temp);
}
}
}
if(cnt >= t)
return cnt;
else
return 0;
}
int main() {
scanf("%d %d %d %d", &m, &n, &l, &t);
for(int i = 0; i < l; i++)
for(int j = 0; j < m; j++)
for(int k = 0; k < n; k++)
scanf("%d", &arr[j][k][i]);
int ans = 0;
for(int i = 0; i < l; i++) {
for(int j = 0; j < m; j++) {
for(int k = 0; k < n; k++) {
if(arr[j][k][i] == 1 && visit[j][k][i] == false)
ans += bfs(j, k, i);
}
}
}
printf("%d", ans);
return 0;
}