Hdu 1072 maid (bfs + greedy)

Source: Internet
Author: User

Nightmare
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission (s): 5475 Accepted Submission (s): 2725

 

Problem 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 shocould 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 cocould 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 cocould reset the exploding time to 6 minutes.

Given the layout of the labyrinth and Ignatius 'start position, please tell Ignatius whether he cocould get out of the labyrinth, if he cocould, 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 cocould only get to one of the nearest area, and he shocould not walk out of the border, of course he cocould 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 frequently times as you wish, if it is needed, Ignatius can get to any areas in the labyrinth as frequently 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 wocould 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 shocould 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 shocould output the minimum time he needs, else you shoshould 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 0
1 0 4 1 1 0 4 1
1 0 0 0 0 0 1
1 1 1 4 1 1 3
5 8
1 2 1 1 1 1 4
1 0 0 0 1 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

Sample Output
4
-1
13

Author
Ignatius. L
 
The start time of a bomb in a maze is set to 6. 2 indicates the start point, and 3 indicates the end point. 1 indicates that you can go, and 0 indicates that you cannot go. 4 indicates that the bomb detonation time is set to 6 again. A person starts from the starting point carrying a bomb. Ask if he is
Walk out of the maze before the bomb explosion. If yes, output the shortest time required. If not, output-1.
Rule: 1. If it happens to 3, and the time when the bomb is set to 0, the system will not go through the maze.
2. If it happens to be 4, prepare the reset detonation time. However, if the detonation time at this point changes to 0, you cannot reset it.
3. Every 4 can be used multiple times as long as it is needed.
 
Analysis: there is a situation for this question to go back, but as long as it is enough to go back, the rest of the time to this point is longer than the rest of the time to go here (Greedy ).
In addition, the remaining time must be greater than or equal to 1 when 4 and 3 are reached.
 


# Include <cstdio> # include <iostream> # include <cstring> # include <queue> using namespace std; int maps [10] [10]; struct node {int x, y; int steps; // The number of steps taken int ltime; // The number of remaining start time for bomb detonation}; int dx [] = }; int dy [] = {0, 0,-}; int pass [10] [10]; // record the time remaining for the last time the bomb arrived. int r, c; bool cango (node & a) {if (. x> = 0 &. x <r &. y> = 0 &. y <c & maps [. x] [. y]! = 0) return true; else return false;} int bfs () {memset (pass, 0, sizeof (pass); queue <node> q; while (! Q. empty () q. pop (); q. push (start); node cur, next; while (! Q. empty () {cur = q. front (); q. pop (); for (int I = 0; I <4; I ++) {next. x = cur. x + dx [I]; next. y = cur. y + dy [I]; if (maps [next. x] [next. y] = 3 & cur. ltime <= 1) continue; if (maps [next. x] [next. y] = 4 & cur. ltime <= 1) continue; if (maps [next. x] [next. y] = 3) return cur. steps + 1; if (maps [next. x] [next. y] = 4) next. ltime = 6; else if (maps [next. x] [next. y] = 1) next. ltime = cur. ltime-1; if (cango (next) & next. ltime> pass [next. x] [next. y]) {pass [next. x] [next. y] = next. ltime; next. steps = cur. steps + 1; q. push (next) ;}} return-1 ;}int main () {int I, j, k, n; scanf ("% d", & n ); for (I = 0; I <n; I ++) {scanf ("% d", & r, & c); for (j = 0; j <r; j ++) {for (k = 0; k <c; k ++) {scanf ("% d ", & maps [j] [k]); if (maps [j] [k] = 2) {start. x = j; start. y = k; start. steps = 0; start. ltime = 6; maps [I] [j] = 0 ;}} int flag = bfs (); printf ("% d \ n", flag );} return 0 ;}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.