标签:
简单空间bfs,开三维数组剪枝1026ms过
#include<iostream> #include<cstdio> #include<queue> #include<cstring> using namespace std; int a,b,c,t; int re; int mapp[51][51][51]; int dir[6][3]={{0,0,1},{0,0,-1},{1,0,0},{-1,0,0},{0,1,0},{0,-1,0}}; struct stu { int x,y,z,s; }; void bfs() { stu x,y; queue<stu>root; x.x=0;x.y=0;x.z=0;x.s=0; root.push(x); mapp[x.x][x.y][x.z]=1; while(root.size()) { x=root.front(); root.pop(); if(x.x==a-1&&x.y==b-1&&x.z==c-1) { re=x.s;return; } for(int i=0;i<6;i++) { y.x=x.x+dir[i][0]; y.y=x.y+dir[i][1]; y.z=x.z+dir[i][2]; y.s=x.s+1; if(y.x<0||y.x>=a||y.y<0||y.y>=b||y.z<0||y.z>=c||mapp[y.x][y.y][y.z]){continue;} if(y.s<t) { root.push(y); mapp[y.x][y.y][y.z]=1; } } } } int main() { int p; scanf("%d",&p); while(p--) { scanf("%d%d%d%d",&a,&b,&c,&t); for(int i=0;i<a;i++) { for(int j=0;j<b;j++) { for(int k=0;k<c;k++) { scanf("%d",&mapp[i][j][k]); } } } if(a+b+c-3>t||mapp[a-1][b-1][c-1]) { printf("-1\n"); continue; } if(a==1&&b==1&&c==1) { printf("0\n"); continue; } re=-1; bfs(); printf("%d\n",re); } return 0; }
标签:
原文地址:http://blog.csdn.net/zafkiel_nightmare/article/details/44981681