用某二进制位代表该钥匙是否存在。如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;
}