HDU 1429 胜利大逃亡(续)(广搜+状态压缩)

用某二进制位代表该钥匙是否存在。如10010表示有第1把和第5把钥匙(下标从0开始)。

当遇到小写字母时,将key的值改变,方法是key=key|(1<<i),将第i位修改为1,该结点标记后加入队列

当遇到大写字母时,判断该钥匙是否存在的方法是(key>>i)&1若返回1说明该位为1则将该结点标记后加入队列。

#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;
const int maxn=25;
bool hash[maxn][maxn][1025];
int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
char g[maxn][maxn];
int n,m,et,si,sj;
struct node
{
    int x,y,t,key;
};
int BFS()
{
    queue<node>q;
    node cur,next;
    cur.x=si,cur.y=sj,cur.t=0,cur.key=0;
    q.push(cur);
    hash[cur.x][cur.y][cur.key]=1;
    while(!q.empty())
    {
        cur=q.front();
        q.pop();
        if(g[cur.x][cur.y]=='^')
        {
            if(cur.t<et) return cur.t;
        }
        if(cur.t>=et) break;
        for(int i=0;i<4;i++)
        {
            next=cur;
            next.x+=dir[i][0];
            next.y+=dir[i][1];
            next.t++;
            if(next.x<0||next.x>=n||next.y<0||next.y>=m) continue;
            char c=g[next.x][next.y];
            if(c=='*') continue;
            if(c>='A'&&c<='J'){
                if(((next.key>>(c-'A'))&1)&&!hash[next.x][next.y][next.key])
                {
                    hash[next.x][next.y][next.key]=1;
                    q.push(next);
                }
            }
            else if(c>='a'&&c<='j')
            {
                 next.key=next.key|(1<<(c-'a'));
                 if(!hash[next.x][next.y][next.key])
                 {
                     hash[next.x][next.y][next.key]=1;
                     q.push(next);
                 }
            }
            else
            {
                if(!hash[next.x][next.y][next.key])
                {
                    hash[next.x][next.y][next.key]=1;
                    q.push(next);
                }
            }
        }
    }
    return -1;
}
int main()
{
    while(~scanf("%d%d%d",&n,&m,&et))
    {
        for(int i=0;i<n;i++)
        {
            scanf("%s",g[i]);
            for(int j=0;j<m;j++)
                if(g[i][j]=='@') si=i,sj=j;
        }
        memset(hash,0,sizeof(hash));
        printf("%d\n",BFS());
    }
    return 0;
}



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值