一、题目:
略
二、分析
使用BFS。
三、代码
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int M, N, L, T;
struct core {
bool value;
bool visited;
int z, x, y;
core(bool value, bool visited, int z, int x, int y) : value(value), visited(visited), z(z), x(x), y(y) {}
};
vector<vector<vector<core *>>> cores;
bool judge(int z, int x, int y) {
return !(z < 0 || z >= L || x < 0 || x >= M || y < 0 || y >= N || !cores[z][x][y]->value ||
cores[z][x][y]->visited);
}
int ans = 0;
int dz[6] = {0, 0, 0, 0, 1, -1};
int dx[6] = {-1, 1, 0, 0, 0, 0};
int dy[6] = {0, 0, -1, 1, 0, 0};
void BFS() {
for (int i = 0; i < L; i++) {
for (int j = 0; j < M; j++) {
for (int k = 0; k < N; k++) {
if (!cores[i][j][k]->visited && cores[i][j][k]->value) {
int cnt = 0;
queue<core *> q;
q.push(cores[i][j][k]);
cores[i][j][k]->visited = true;
cnt++;
while (!q.empty()) {
core *temp_c = q.front();
q.pop();
for (int l = 0; l < 6; l++) {
if (judge(temp_c->z + dz[l], temp_c->x + dx[l], temp_c->y + dy[l])) {
q.push(cores[temp_c->z + dz[l]][temp_c->x + dx[l]][temp_c->y + dy[l]]);
cores[temp_c->z + dz[l]][temp_c->x + dx[l]][temp_c->y + dy[l]]->visited = true;
cnt++;
} else {
continue;
}
}
}
if (cnt >= T) {
ans += cnt;
}
} else {
continue;
}
}
}
}
}
int main() {
cin >> M >> N >> L >> T;
for (int i = 0; i < L; i++) {
vector<vector<core *>> temp1(M);
cores.push_back(temp1);
for (int j = 0; j < M; j++) {
vector<core *> temp2(N);
cores[i].push_back(temp2);
for (int k = 0; k < N; k++) {
int a;
cin >> a;
core *temp3 = new core(a == 1, false, i, j, k);
cores[i][j].push_back(temp3);
}
}
}
BFS();
cout << ans;
return 0;
}
四、注意
样例5未过原因:搜索时只搜索了前后左右和下层的相邻节点。
每次搜索时都要搜索节点周围的6个节点。因为可能存在这种情况:某一个满足题意的区域节点先向下一层延伸再在同层延伸,然后再往上延伸。