HDU 1253 胜利大逃亡(BFS)

#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <queue>
#include <cstring>
using namespace std;
struct node{
    int x,y,z,step;
};
int ma[51][51][51];
int A,B,C,T;
int mv[6][3] = {{1,0,0},{0,1,0},{0,0,1},{-1,0,0},{0,-1,0},{0,0,-1}};
//bool vis[51][51][51];开标记数组爆了两次内存,果断删掉
void BFS()
{
    queue<node>q;
    node f,t;
    f.x = 0; f.y = 0; f.z = 0; f.step = 0;
    q.push(f);
    ma[f.x][f.y][f.z] = 1;
    while(!q.empty())
    {
        t = q.front();
        q.pop();
        if(t.x==A-1&&t.y==B-1&&t.z==C-1 && t.step <= T)
        {
            printf("%d\n",t.step);
            return;
        }
        for(int i = 0;i<6;i++)
        {
            f.x = t.x + mv[i][0];
            f.y = t.y + mv[i][1];
            f.z = t.z + mv[i][2];
            if(0<=f.x && f.x<A&& 0<=f.y&&f.y<B&&0<=f.z&&f.z<C &&ma[f.x][f.y][f.z]==0)
            {
                f.step = t.step + 1;
                ma[f.x][f.y][f.z] = 1;
                q.push(f);
            }
        }
    }
    puts("-1");
}
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        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",&ma[i][j][k]);
                }
            }
        }
        BFS();
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值