HDU 1072:nightmare (BFS)

Source: Internet
Author: User

NightmareTime limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others)
Total submission (s): 6968 Accepted Submission (s): 3344


Problem Descriptionignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The Labyrinth has a exit, Ignatius should get out of the 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, which is to move from one area to the nearest are A (that's, 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) Tak Es 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 The Labyr Inth, if he could, output the minimum time that he had to use to find the exit of the The labyrinth, else output-1.

Here is some rules:
1. We can assume the Labyrinth is a 2 array.
2. Each minute, Ignatius could-only get-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 The Labyrinth.
4. If Ignatius get to the area which contains bomb-rest-equipment then the exploding time turns to 0, he can ' t use the equ Ipment to reset the bomb.
5. A Bomb-reset-equipment can used as many times as you wish, if it's needed, Ignatius can get to any areas in the lab Yrinth as many times as you wish.
6. The time to reset the exploding time can is ignore, in and words, if Ignatius get to a area which contain bomb-rest- Equipment, and the exploding time is larger than 0, the exploding time would being reset to 6.

Inputthe input contains several test cases. The first line of the input was a single integer T which is the number of test cases. T test Cases follow.
Each test case is starts with the 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 is five integers which indicate the different type of area in the Labyrinth:
0:the area was 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 Input

Sample Output
4-113

This method of weighing the problem is very special, because one can go repeatedly, so cannot judge by bool, but according to the bomb remaining explosion time to determine the weight, when walking to a grid if the remaining time is less than equals before the maximum value in this lattice, then you do not have to queue this node to expand the state, because it does not make sense , unless the remaining time is greater than the previous maximum, we will go to the queue and update the maximum remaining time of the pity Dorado.



#include <iostream> #include <cstring> #include <ctime> #include <algorithm> #include <    Cstdio> #include <queue> using namespace std;      struct node {int x, y;      int t;  int res;    };  int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};  int SX, SY;  int rest[10][10];  int g[10][10];    int n,m;      BOOL Jud (node &k) {if (k.x<0 | | k.x>=n) return FALSE;      if (k.y<0 | | k.y>=m) return FALSE;      if (g[k.x][k.y]==0) return false;      if (k.res==0) return false;      if (g[k.x][k.y]==4) k.res=6;      if (K.res<=rest[k.x][k.y]) return false;      Rest[k.x][k.y]=k.res;  return true;      } int BFs () {queue<node> q;      Node a,k;      int x, y;      a.x=sx,a.y=sy,a.t=0,a.res=6;      Q.push (a);          while (!q.empty ()) {A=q.front ();          Q.pop ();              for (int i=0; i<4; i++) {k.x = a.x + dir[i][0];              K.Y = A.y + dir[i][1];          k.t = a.t + 1;    K.res = a.res-1;                  if (Jud (k)) {if (g[k.x][k.y]==3) return k.t;              Q.push (k);  }}} return-1;      } int main () {int t;      scanf ("%d", &t);  while (~SCANF ("%d%d", &n,&m)) {for (Int. i=0; i<n; i++) {for (int j=0; j<m;                  J + +) {scanf ("%d", &g[i][j]);              if (g[i][j]==2) sx=i, sy=j;          }} memset (Rest,0,sizeof (rest));          rest[sx][sy]=6;      printf ("%d\n", BFS ());  } return 0;   }







HDU 1072:nightmare (BFS)

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.