hdu--1072--Nightmare(bfs回溯)

來源:互聯網
上載者:User

標籤:exit   self   str   and   course   can   ica   test   any   

Nightmare

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 11273    Accepted Submission(s): 5493


Problem DescriptionIgnatius 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. 

 

InputThe 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. 

 

OutputFor 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 Input33 32 1 11 1 01 1 34 82 1 1 0 1 1 1 01 0 4 1 1 0 4 11 0 0 0 0 0 0 11 1 1 4 1 1 1 35 81 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 Output4-113
 1 /* 2     Name: hdu--1072--Nightmare 3     Copyright: ?2017 日天大帝 4     Author: 日天大帝 5     Date: 22/04/17 14:53 6     Description: bfs有條件回溯,走過的路還得判斷能不能走, vis[a.x][a.y] >= temp.time 7                 判斷,如果走回去,原來點的時間增加了,那麼就回溯  8 */ 9 #include<iostream>10 #include<cstring> 11 #include<queue>12 using namespace std;13 struct node{14     int x,y,time,steps;15     bool operator<(const node &a)const{16         return steps>a.steps; 17     }18 };19 int map[10][10];20 int vis[10][10];21 int dir[4][2] = {0,1,0,-1,-1,0,1,0};22 int m,n;23 node s,e;24 void bfs(){25     priority_queue<node> q;26     s.time = 6;27     s.steps = 0;28     q.push(s);29     while(!q.empty()){30         node a,temp = q.top();q.pop();31         if(temp.x == e.x && temp.y == e.y){32             cout<<temp.steps<<endl;return ; 33         }34         for(int i=0; i<4; ++i){35             a = temp;36             a.x += dir[i][0];37             a.y += dir[i][1];38             a.time--;39             a.steps ++;40             if(a.time<=0||a.x<0||a.y<0||a.x>=n||a.y>=m||map[a.x][a.y] == 0|| vis[a.x][a.y] >= temp.time)continue;41             if(map[a.x][a.y] == 4)a.time = 6;42             vis[a.x][a.y] = a.time;43             q.push(a);44         }45     }46     cout<<-1<<endl;47 }48 int main(){49     ios::sync_with_stdio(false);50     51     int t;cin>>t;52     while(t--){53         memset(vis,0,sizeof(vis));54         memset(map,0,sizeof(map));55         cin>>n>>m;56         for(int i=0; i<n; ++i){57             for(int j=0; j<m; ++j){58                 cin>>map[i][j];59                 if(map[i][j] == 2){60                     s.x = i;s.y = j;61                 }62                 if(map[i][j] == 3){63                     e.x = i;e.y = j;64                 }65             }66         }67         vis[s.x][s.y] = 6;68         bfs();69     }70     return 0;71 }

 

 

hdu--1072--Nightmare(bfs回溯)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.