肿瘤诊断c语言,L3-004. 肿瘤诊断-PAT团体程序设计天梯赛GPLT(广度优先搜索)

#include

#include

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 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;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值