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


    Nightmare

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


    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 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
     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 }
  • 相关阅读:
    本地连接显示受限制,无法连接网络
    【Vegas原创】服务器可以上网,客户端获取DHCP后,无法上网的问题解决
    【Vegas原创】AD中域用户密码策略不生效的解决方案
    【Vegas原创】网页中英文自动/手动切换方法
    【Vegas原创】XP的administrator用户被停用的解决方法
    【Vegas原创】“光驱无法访问,函数不正确”解决方法
    去除flash边框虚框的方法代码
    【Vegas原创】远程桌面下重启xp系统的命令
    ORA00054: 资源正忙, 但指定以 NOWAIT 方式获取资源 解决方法
    【Vegas原创】BugFree删除项目的方法
  • 原文地址:https://www.cnblogs.com/langyao/p/6748096.html
Copyright © 2020-2023  润新知