Fellow me on GitHub

HDU2579

Dating with girls(2)

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


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

1
6 6 2
...Y..
...#..
.#....
...#..
...#..
..#G#.
 

Sample Output

7
 
 1 //2016.8.4
 2 #include<iostream>
 3 #include<cstdio>
 4 #include<queue>
 5 #include<cstring>
 6 
 7 using namespace std;
 8 
 9 struct node
10 {
11     int x, y, sec;
12 };
13 char m[105][105];
14 int vis[105][105][12];
15 int c, r, k, T, sx, sy, ex, ey;
16 int dx[4] = {1, 0, -1, 0};
17 int dy[4] = {0, 1, 0, -1};
18 
19 void bfs()
20 {
21     node start;
22     start.x = sx; start.y = sy; start.sec = 0;
23     queue<node> q;
24     q.push(start);
25     vis[sx][sy][0] = 1;
26     while(!q.empty())
27     {
28         node tmp = q.front();
29         node in;
30         q.pop();
31         for(int i = 0; i < 4; i++)
32         {
33             int nx = tmp.x+dx[i];
34             int ny = tmp.y+dy[i];
35             in.x = nx; in.y = ny; in.sec = tmp.sec+1;
36             if(nx>=0&&nx<r&&ny>=0&&ny<c&&!vis[nx][ny][in.sec%k])
37             {
38                 if(in.x == ex && in.y == ey)
39                 {
40                     cout<<in.sec<<endl;
41                     return;
42                 }
43                 if((tmp.sec+1)%k==0 || m[nx][ny]=='.' || m[nx][ny]=='Y')
44                 {
45                     q.push(in);
46                     vis[nx][ny][in.sec%k] = 1;
47                 }    
48             }
49         }
50     }
51     cout<<"Please give me another chance!"<<endl;
52 }
53 
54 int main()
55 {
56     cin >> T;
57     while(T--)
58     {
59         scanf("%d%d%d", &r, &c, &k);
60         for(int i = 0; i < r; i++)
61         {
62             getchar();
63             for(int j = 0; j < c; j++)
64             {
65                 scanf("%c", &m[i][j]);
66                 if(m[i][j] == 'Y')
67                 {
68                     sx = i;
69                     sy = j;
70                 }
71                 if(m[i][j] == 'G')
72                 {
73                     ex = i;
74                     ey = j;
75                 }
76             }
77         }
78         memset(vis, 0, sizeof(vis));
79         bfs();
80     }
81 
82     return 0;
83 }

 

参考:http://blog.csdn.net/mengxiang000000/article/details/51066586

posted @ 2016-08-04 19:52  Penn000  阅读(269)  评论(0编辑  收藏  举报