1253 胜利大逃亡
文章目录
- 1253 胜利大逃亡
题意:
思路:
将BFS原来二维的部分改成三维,其余部分均不变即可。
注:用cin读入要关流,否则会超时
读入优化代码:
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
AC代码:
#include<bits/stdc++.h>typedef long long ll;const int N = 60,M = 2e4+10,INF = 0x3f3f3f3f,mod = 1e9+7;
struct Node{
int x,y,z,step;
}que[N*N*N];int a,b,c,t;
bool g[N][N][N],book[N][N][N];
int ne[6][3] = {
{
1,0,0},{
-1,0,0},{
0,1,0},{
0,-1,0},{
0,0,1},{
0,0,-1}};bool OK(int x,int y,int z)
{
if(x<1||y<1||z<1||x>a||y>b||z>c||book[x][y][z]||g[x][y][z])return false;return true;
}void bfs()
{
int tail = -1,head = 0;que[++tail] = {
1,1,1};book[1][1][1] = true;while(tail >= head){
auto temp = que[head++];if(temp.x == a && temp.y == b && temp.z == c){
std::cout<<temp.step<<'\n';return;}if(temp.step>t)continue;for(int i = 0 ; i < 6 ; i++){
int tx = temp.x + ne[i][0];int ty = temp.y + ne[i][1];int tz = temp.z + ne[i][2];if(!OK(tx,ty,tz))continue;book[tx][ty][tz] = true;que[++tail] = {
tx,ty,tz,temp.step+1};}}std::cout<<-1<<'\n';
}int main()
{
std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);int T;std::cin>>T;while(T--){
std::cin>>a>>b>>c>>t;for(int i = 1 ; i <= a ; i++)for(int j = 1 ; j <= b ; j++)for(int k = 1 ; k <= c ; k++)std::cin>>g[i][j][k],book[i][j][k] = false;bfs();}
}