hdoj2579Dating with girls(2)【BFS】

来源:互联网 发布:光伏预算软件 编辑:程序博客网 时间:2024/04/29 04:54

Dating with girls(2)

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


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
 

Source
HDU 2009-5 Programming Contest

#include<cstdio>#include<cstdlib>#include<cstring>#include<algorithm>#include<cmath>#include<queue>using namespace std;struct node{int x,y,time;};int n,m,k;char map[110][110];int vis[110][110][15];int mov[][2]={0,1,0,-1,1,0,-1,0};int bfs(int x,int y){queue<node>Q;node u,v;u.x=x;u.y=y;u.time=0;Q.push(u);while(!Q.empty()){u=Q.front();Q.pop();if(map[u.x][u.y]=='G')return u.time;for(int i=0;i<4;++i){v.x=u.x+mov[i][0];v.y=u.y+mov[i][1];if(v.x>=0&&v.x<n&&v.y>=0&&v.y<m&&(map[v.x][v.y]!='#'||(u.time+1)%k==0)&&!vis[v.x][v.y][(u.time+1)%k]){v.time=u.time+1;vis[v.x][v.y][v.time%k]=1;Q.push(v);}}}return -1;}int main(){int t,i,j;scanf("%d",&t);while(t--){scanf("%d%d%d",&n,&m,&k);int sx,sy;for(i=0;i<n;++i){scanf("%s",map[i]);for(j=0;j<m;++j){if(map[i][j]=='Y'){sx=i;sy=j;}}}memset(vis,0,sizeof(vis));int ans=bfs(sx,sy);if(ans==-1)printf("Please give me another chance!\n");else printf("%d\n",ans);}return 0;}



0 0