HDU1429勝利大逃亡(續)BFS+狀態壓縮
阿新 • • 發佈:2019-02-02
這題的算是BFS中應用狀壓的一個模板題吧,沒啥難度,用key來儲存已獲得的鑰匙,狀壓一下就可以了
不過我寫的過程中,犯了好多SB錯誤,導致除錯了好久才A,本來仔細可以1A的說
#include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <climits> #include <string> #include <iostream> #include <cstdlib> #include <list> #include <set> #include <queue> #include <stack> using namespace std; #define INF 0xfffffff #define maxn 30 int n,m,t; int vis[maxn][maxn][1500]; int dir[4][2]={-1,0,0,-1,1,0,0,1}; struct point { int x,y; int state,key; }s; char map[maxn][maxn]; int bfs() { memset(vis,0,sizeof(vis)); queue<point>q; q.push(s); vis[s.x][s.y][0]=1; while(!q.empty()) { point u=q.front(); q.pop(); point tmp; //printf("//%d %d//\n",u.x,u.y); for(int i=0;i<4;i++) { tmp.x=u.x+dir[i][0]; tmp.y=u.y+dir[i][1]; tmp.key=u.key; tmp.state=u.state+1; //printf("x=%d y=%d key=%d state=%d\n",tmp.x,tmp.y,tmp.key,tmp.state); if(tmp.state>=t||tmp.x<0||tmp.x>n-1||tmp.y<0||tmp.y>m-1||map[tmp.x][tmp.y]=='*') continue; char tc=map[tmp.x][tmp.y]; if(tc=='^') return tmp.state; if(tc>='A'&&tc<='J') { //printf("%d %d\n",tmp.key,1<<(tc-'A')); if((tmp.key&(1<<(tc-'A')))==0) continue;//等於號前面的括號不要忘記打,在這裡我都快調哭了 } else if(tc>='a'&&tc<='j') { tmp.key|=(1<<(tc-'a')); } if(vis[tmp.x][tmp.y][tmp.key]==0) { vis[tmp.x][tmp.y][tmp.key]=1; //printf("rudui:%d %d\n",tmp.x,tmp.y); q.push(tmp); } } } return -1; } int main() { while(scanf("%d%d%d",&n,&m,&t)!=EOF) { for(int i=0;i<n;i++) { scanf("%s",map[i]); for(int j=0;j<m;j++) { if(map[i][j]=='@') { s.x=i; s.y=j; } } } s.key=0;s.state=0; int ans=bfs(); if(ans==-1) printf("-1\n"); else if(ans<t) printf("%d\n",ans); else printf("-1\n"); } return 0; }