标签:
1 5 5 14 S*#*. .#... ..... ****. ...#. ..*.P #.*.. ***.. ...*. *.#..
YES
找不到错误 直接重新打一遍
#include<stdio.h> #include<queue> #include<string.h> using namespace std; char map[2][15][15];//不止一次吧map定义成int型错误 找了一天 int vis[2][15][15]; int n,m,time,flag,T; int step[4][2]= {1,0,-1,0,0,1,0,-1}; struct node { int x,y,floor,step; }; bool check (node a) { if(a.x<0||a.x>=n||a.y<0||a.y>=m) return 0; return 1; } void BFS() { node a,n; queue<node>q; flag=0; memset(vis,0,sizeof(vis)); vis[0][0][0]=1; a.x=0; a.y=0; a.floor=0; a.step=0; q.push(a); while(!q.empty()) { a=q.front(); //printf("%d %d %d %d\n",a.x,a.y,a.floor,a.step); q.pop(); if(map[a.floor][a.x][a.y]=='P'&&a.step<=time)//开始忘记了时间限制 { flag=1; return ; } for(int i=0; i<4; i++) { n.x=a.x+step[i][0]; n.y=a.y+step[i][1]; n.floor = a.floor; if(check(n)&&map[n.floor][n.x][n.y]!='*') { if(map[n.floor][n.x][n.y]=='#'&&map[n.floor^1][n.x][n.y]=='*')//撞死了 continue; if(map[n.floor][n.x][n.y]=='#'&&map[n.floor^1][n.x][n.y]=='#')//都是传送门 continue; if(map[n.floor][n.x][n.y]=='#'&&!vis[n.floor][n.x][n.y]&&vis[n.floor^1][n.x][n.y]==0)//传送 能走 { vis[n.floor][n.x][n.y]=1; n.floor=1^n.floor;// 按位异或 0 1 楼层之间转换 vis[n.floor][n.x][n.y]=1; n.step=a.step+1; q.push(n); } if(map[n.floor][n.x][n.y]!='#'&&!vis[n.floor][n.x][n.y])//没传送 能走 { vis[n.floor][n.x][n.y]=1; n.step=a.step+1; q.push(n); } } } } } int main (void) { int N; scanf("%d",&N); while(N--) { scanf("%d%d%d",&n,&m,&time); //getchar(); for(int floor=0; floor<2; floor++) { for(int i=0; i<n; i++) { scanf("%s",&map[floor][i]);//floor在第一重循环 一定要定义在三维数组的第一个位置上 } getchar();//输入楼层之间 有一个空行 吃掉 } BFS(); if(flag) { printf("YES\n"); } else printf("NO\n"); } return 0; }
标签:
原文地址:http://blog.csdn.net/qq_24653023/article/details/51980804