1 5 5 14 S*#*. .#... ..... ****. ...#. ..*.P #.*.. ***.. ...*. *.#..
YES
1、在T时刻之前到达也行2、遇到#一定要传送,且存在上下层在同一位置都有# 的情况
处理好#的情况就好了,wrong 无极限啊,这种题错了调试都很艰苦,简直酷毙
#include"stdio.h" #include"string.h" #include"math.h" #include"queue" using namespace std; #define N 15 #define M 1000 char g[2][N][N]; int mark[2][N][N]; int n,m,t,ei,ej,ek; int dir[4][2]={{0,1},{0,-1},{-1,0},{1,0}}; struct node { int x,y,z,t; //z为层数 }; int judge(int x,int y,int z) { if(x>=0&&x<n&&y>=0&&y<m&&g[z][x][y]!='*') return 1; return 0; } void bfs() { int i,x,y,z; x=y=z=0; queue<node >q; node cur,next; memset(mark,0,sizeof(mark)); mark[z][x][y]=1; cur.x=x; cur.y=y; cur.z=z; cur.t=0; q.push(cur); while(!q.empty()) { cur=q.front(); q.pop(); if(cur.x==ei&&cur.y==ej&&cur.z==ek&&cur.t<=t) { printf("YES\n");return ; } if(cur.t>t) break; for(i=0;i<4;i++) { next.x=x=cur.x+dir[i][0]; next.y=y=cur.y+dir[i][1]; next.z=z=cur.z; next.t=cur.t+1; if(judge(x,y,z)&&!mark[z][x][y]) { mark[z][x][y]=1; if(g[z][x][y]=='#') { if(z==0) next.z=z=1; else next.z=z=0; if(g[z][x][y]=='#'||g[z][x][y]=='*') continue; } mark[z][x][y]=1; q.push(next); } } } printf("NO\n"); } int main() { int T,i,j,k; scanf("%d",&T); while(T--) { scanf("%d%d%d",&n,&m,&t); for(k=0;k<2;k++) for(i=0;i<n;i++) scanf("%s",g[k][i]); for(k=0;k<2;k++) { for(i=0;i<n;i++) { for(j=0;j<m;j++) { if(g[k][i][j]=='P') { ei=i;ej=j;ek=k; } } } } bfs(); } return 0; }
hdu 2102 A计划 (bfs+队列),布布扣,bubuko.com
原文:http://blog.csdn.net/u011721440/article/details/38438637