码迷,mamicode.com
首页 > 其他好文 > 详细

CDZSC_2015寒假新人(4)——搜索 F

时间:2015-01-27 21:32:30      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

Description

Ignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The labyrinth has an exit, Ignatius should get out of the labyrinth before the bomb explodes. The initial exploding time of the bomb is set to 6 minutes. To prevent the bomb from exploding by shake, Ignatius had to move slowly, that is to move from one area to the nearest area(that is, if Ignatius stands on (x,y) now, he could only on (x+1,y), (x-1,y), (x,y+1), or (x,y-1) in the next minute) takes him 1 minute. Some area in the labyrinth contains a Bomb-Reset-Equipment. They could reset the exploding time to 6 minutes. 

Given the layout of the labyrinth and Ignatius‘ start position, please tell Ignatius whether he could get out of the labyrinth, if he could, output the minimum time that he has to use to find the exit of the labyrinth, else output -1. 

Here are some rules: 
1. We can assume the labyrinth is a 2 array. 
2. Each minute, Ignatius could only get to one of the nearest area, and he should not walk out of the border, of course he could not walk on a wall, too. 
3. If Ignatius get to the exit when the exploding time turns to 0, he can‘t get out of the labyrinth. 
4. If Ignatius get to the area which contains Bomb-Rest-Equipment when the exploding time turns to 0, he can‘t use the equipment to reset the bomb. 
5. A Bomb-Reset-Equipment can be used as many times as you wish, if it is needed, Ignatius can get to any areas in the labyrinth as many times as you wish. 
6. The time to reset the exploding time can be ignore, in other words, if Ignatius get to an area which contain Bomb-Rest-Equipment, and the exploding time is larger than 0, the exploding time would be reset to 6. 
 

Input

The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow. 
Each test case starts with two integers N and M(1<=N,Mm=8) which indicate the size of the labyrinth. Then N lines follow, each line contains M integers. The array indicates the layout of the labyrinth. 
There are five integers which indicate the different type of area in the labyrinth: 
0: The area is a wall, Ignatius should not walk on it. 
1: The area contains nothing, Ignatius can walk on it. 
2: Ignatius‘ start position, Ignatius starts his escape from this position. 
3: The exit of the labyrinth, Ignatius‘ target position. 
4: The area contains a Bomb-Reset-Equipment, Ignatius can delay the exploding time by walking to these areas. 
 

Output

For each test case, if Ignatius can get out of the labyrinth, you should output the minimum time he needs, else you should just output -1. 
 

Sample Input

3
3 3
2 1 1
1 1 0
1 1 3
4 8
2 1 1 0 1 1 1 0
1 0 4 1 1 0 4 1
1 0 0 0 0 0 0 1
1 1 1 4 1 1 1 3
5 8
1 2 1 1 1 1 1 4
1 0 0 0 1 0 0 1
1 4 1 0 1 1 0 1
1 0 0 0 0 3 0 1
1 1 4 1 1 1 1 1
 

Sample Output

4
-1
13
 
 
 
 
 
思路:这题和寻常的bfs不同他不能用VIS来标记因为他可以往回走,有多条路可以选择。。。。。所以我们要在VIS上做点处理(只有未被标记和剩余时间比原先的大的才入队列)
 
 
 
 
 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdio>
 4 #include <queue>
 5 using namespace std;
 6 int vis[10][10],arr[10][10],n,m,xx[]={1,-1,0,0},yy[]={0,0,1,-1};
 7 struct node
 8 {
 9     int x;
10     int y;
11     int s;//走的步数
12     int t;//剩余时间
13 };
14 int bfs(node a,node b)
15 {
16     node c,temp;
17     memset(vis,0,sizeof(vis));
18     queue<node>q;
19     q.push(a);
20     while(!q.empty())
21     {
22         c=q.front();
23         q.pop();
24         for(int i=0; i<4; i++)
25         {
26             temp=c;
27             temp.x=c.x+xx[i];
28             temp.y=c.y+yy[i];
29             temp.t--;
30             temp.s++;
31             if(temp.x>=n||temp.x<0||temp.y>=m||temp.y<0||arr[temp.x][temp.y]==0||temp.t<1)//边界和墙处理和当炸弹爆炸后就不继续
32             {
33                 continue;
34             }
35             if(temp.x==b.x&&temp.y==b.y&&temp.t>0)//找到出口
36             {
37                 return temp.s;
38             }
39             if(arr[temp.x][temp.y]==4)//重置
40             {
41                 temp.t=6;
42             }
43             if(vis[temp.x][temp.y]<temp.t)//标记,如果时间比原来标记的或者为被标记的大就标记
44             {  
45                 vis[temp.x][temp.y]=temp.t;
46                 q.push(temp);
47             }
48         }
49     }
50     return -1;
51 }
52 int main()
53 {
54 #ifdef CDZSC_OFFLINE
55     freopen("in.txt","r",stdin);
56 #endif
57     int t,i,j,sum;
58     node aa,bb;
59     scanf("%d",&t);
60     while(t--)
61     {
62         scanf("%d%d",&n,&m);
63         for(i=0; i<n; i++)
64         {
65             for(j=0; j<m; j++)
66             {
67                 scanf("%d",&arr[i][j]);
68             }
69         }
70         for(i=0; i<n; i++)
71         {
72             for(j=0; j<m; j++)
73             {
74                 if(arr[i][j]==2)//找到入口
75                 {
76                     aa.x=i;
77                     aa.y=j;
78                     aa.t=6;
79                     aa.s=0;
80                 }
81                 if(arr[i][j]==3)//出口
82                 {
83                     bb.x=i;
84                     bb.y=j;
85                 }
86             }
87         }
88         sum=bfs(aa,bb);
89         printf("%d\n",sum);
90     }
91     return 0;
92 }

 

CDZSC_2015寒假新人(4)——搜索 F

标签:

原文地址:http://www.cnblogs.com/Wing0624/p/4253916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!