zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    大数据DDos检测——DDos攻击本质上是时间序列数据,t+1时刻的数据特点和t时刻强相关,因此用HMM或者CRF来做检测是必然! 和一个句子的分词算法CRF没有区别!
    什么是私有密钥密码技术——密钥加密算法采用同一把密钥进行加密和解密
    条件随机场——时间序列(句子单词序列也算),其特征函数必须要考虑前一刻的数据
    隐形马尔可夫模型——前向算法就是条件概率
    MySQL添加字段和修改字段的方法
    shell脚本操作mysql数据库
    mysql 如何修改、添加、删除表主键
    shell按行合并文件
    MySQL主键添加/删除
    MySQL 添加列,修改列,删除列
  • 原文地址:https://www.cnblogs.com/slothrbk/p/6748096.html
Copyright © 2011-2022 走看看