hdoj 2579 Dating with girls(2) 【BFS&&三维数组标记】

来源:互联网 发布:马云 蚂蚁金服 知乎 编辑:程序博客网 时间:2024/06/06 07:09

Dating with girls(2)

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2656    Accepted Submission(s): 741


Problem Description
If you have solved the problem Dating with girls(1).I think you can solve this problem too.This problem is also about dating with girls. Now you are in a maze and the girl you want to date with is also in the maze.If you can find the girl, then you can date with the girl.Else the girl will date with other boys. What a pity!
The Maze is very strange. There are many stones in the maze. The stone will disappear at time t if t is a multiple of k(2<= k <= 10), on the other time , stones will be still there.
There are only ‘.’ or ‘#’, ’Y’, ’G’ on the map of the maze. ’.’ indicates the blank which you can move on, ‘#’ indicates stones. ’Y’ indicates the your location. ‘G’ indicates the girl's location . There is only one ‘Y’ and one ‘G’. Every seconds you can move left, right, up or down.
 

Input
The first line contain an integer T. Then T cases followed. Each case begins with three integers r and c (1 <= r , c <= 100), and k(2 <=k <= 10).
The next r line is the map’s description.
 

Output
For each cases, if you can find the girl, output the least time in seconds, else output "Please give me another chance!".
 

Sample Input
16 6 2...Y.....#...#.......#.....#....#G#.
 

Sample Output
7
分析:
bfs加标记 带回溯。
代码:
#include<cstdio>#include<cstring>#include<algorithm>#include<queue>#include<cstdlib>using namespace std;int dis[4][2]={1,0,-1,0,0,1,0,-1};int vis[110][110][110];char map[110][110];struct node{int x;int y;int step;}a,b;int sx,sy,ex,ey;int r,c,k;void bfs(){memset(vis,0,sizeof(vis));queue<node>q;a.x=sx;a.y=sy;a.step=0;q.push(a);while(!q.empty()){a=q.front();q.pop();if(map[a.x][a.y]=='G'){printf("%d\n",a.step);return;}for(int i=0;i<4;i++)     {     b.x=a.x+dis[i][0];     b.y=a.y+dis[i][1];     b.step=a.step+1;     int s=b.step%k;     if(b.x<r&&b.x>=0&&b.y<c&&b.y>=0&&!vis[b.x][b.y][s])     {     vis[b.x][b.y][s]=1;     if(map[b.x][b.y]=='#'&&s)     continue;     q.push(b);     }     }}printf("Please give me another chance!\n");}int main(){int t;scanf("%d",&t);while(t--){scanf("%d%d%d",&r,&c,&k);for(int i=0;i<r;i++)scanf("%s",map[i]);for(int i=0;i<r;i++)  for(int j=0;j<c;j++)  {  if(map[i][j]=='Y')  sx=i,sy=j;  if(map[i][j]=='G')  ex=i,ey=j;  }  bfs(); }return 0;}

0 0
原创粉丝点击