:
5 5 **..T **.*. ..|.. .*.*. S....
7地图如下:HintHint
中文题, 这道题主要是在于如何判断楼梯的状态, 很容易可以想到它是每两秒一循环,所以我们可以利用奇偶性来确定。。
#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #include<stdlib.h> #include<vector> #include<queue> #include<cmath> using namespace std; char map[25][25];//地图 int vis[25][25];//访问数组 int dir[4][2]= {1, 0, -1, 0, 0, 1, 0, -1};//走法 int n, m;//地图大小 int ax, ay;//起点坐标 struct point//利用结构体记录 { int x, y; int time; }; queue<point>q; bool judge_1(int xx, int yy) { if( xx>=0 && xx<n && yy>=0 && yy<m && !vis[xx][yy] && map[xx][yy]!='*' ) return true; else return false; } bool judge_2(int a, int b, int c, int d, int step)//楼梯每2秒一循环,利用奇偶性来判断此时楼梯的状态,利用枚举各种情况求解 { if( judge_1(c, d) )//当然首先也是要判断它是否满足进行下一步条件 { if( map[a][b] == '|' ) { if(b==d)//这种情况是在|变为-时通过 { if( step%2==0 ) return true; else return false; } else //这种情况当楼梯为初始的|时通过 { if( step%2==0 ) return false; else return true; } } else if( map[a][b] =='-' )//原理同上 { if( a==c ) { if( step%2==0 ) return true; else return false; } else { if( step%2==0 ) return false; else return true; } } } return false; } void bfs() { memset(vis, 0, sizeof(vis)); vis[ax][ay] = 1; while( !q.empty() ) { point temp = q.front(); q.pop(); for(int i=0; i<4; i++) { int xx = temp.x + dir[i][0]; int yy = temp.y + dir[i][1]; if( judge_1(xx, yy) ) { point next; next.x = xx; next.y = yy; next.time = temp.time + 1; if( map[xx][yy]=='T' )//当到达目的地时输出并退出 { printf("%d\n", next.time); return ; } else if( map[xx][yy]=='.' )//遇到空地 { vis[xx][yy] = 1 ; q.push(next); } else if( map[xx][yy]=='|' || map[xx][yy]=='-' )//遇到楼梯 { point lou; lou.x = xx + dir[i][0]; lou.y = yy + dir[i][1]; if( judge_2(xx, yy, lou.x, lou.y, temp.time ) ) //此时能够过楼梯 { lou.time = temp.time + 1; vis[lou.x][lou.y] = 1; if( map[lou.x][lou.y]=='T' ) { printf("%d\n", lou.time); return ; } q.push(lou); } else //不能过楼梯,停下等一秒过。 { if( judge_1(lou.x, lou.y) ) { lou.x = temp.x; lou.y = temp.y; lou.time = temp.time + 1; vis[lou.x][lou.y] = 1; q.push(lou); } } } } } } } int main() { while(scanf("%d%d", &n, &m) ==2 ) { while(!q.empty()) q.pop(); memset(map,0 , sizeof(map)); point start; for(int i=0; i<n; i++) { getchar(); for(int j=0; j<m; j++) { scanf("%c", &map[i][j]); if( map[i][j]=='S' ) { ax = i; ay = j; } } } start.x = ax;//找到起点并进入队列 start.y = ay; start.time = 0; q.push(start); bfs(); } return 0; }
HDU 1180:诡异的楼梯(BFS),布布扣,bubuko.com
原文:http://blog.csdn.net/u013487051/article/details/38233005