zoukankan      html  css  js  c++  java
  • hdu 1072 Nightmare (bfs+优先队列)

    题目:http://acm.hdu.edu.cn/showproblem.php?pid=1072

    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
     
    题目大意:0表示墙,1表示路,2表示起点,3表示终点,4表示加时,遇到4则初始炸弹爆炸时间为6,可以特意去访问4然后再返回继续前进!
        PS:当剩余时间为0时,若刚刚到达出口or到达4都会被炸死。因此,当剩余时间为1时,不入队!
     
     1 #include<iostream>
     2 #include<queue>
     3 #include<cstdio>
     4 
     5 using namespace std;
     6 
     7 struct node{
     8     int x,y;
     9     int time;
    10     int sss;
    11     friend bool operator < (node a,node b){
    12         return a.time > b.time;
    13     }
    14 };
    15 
    16 int n,m,sx,sy,ex,ey;
    17 int dir[8][2]={1,0,-1,0,0,-1,0,1};
    18 int map[10][10];
    19 
    20 bool inMap(int x,int y){
    21     return x>=0&&x<n&&y>=0&&y<m;
    22 }
    23 
    24 int bfs(){
    25     node cur,next;
    26     priority_queue<node> q;
    27     cur.x = sx;
    28     cur.y = sy;
    29     cur.time = 0;
    30     cur.sss = 6;
    31     q.push(cur);
    32     while(!q.empty()){
    33         cur = q.top();
    34         q.pop();
    35         if(cur.sss<=0)
    36             return -1;
    37         if(cur.sss>0 && cur.x == ex && cur.y == ey)
    38             return cur.time;
    39         for(int i=0;i<4;i++){
    40             int xx = cur.x + dir[i][0];
    41             int yy = cur.y + dir[i][1];
    42             if(inMap(xx,yy) && map[xx][yy]!=0 && cur.sss>1){
    43                 next.sss = cur.sss-1;
    44                 if(map[xx][yy]==4 && next.sss > 0){
    45                     next.sss = 6;
    46                     map[xx][yy] = 0;
    47                 }
    48                 next.x = xx;
    49                 next.y = yy;
    50                 next.time = cur.time + 1;
    51                 q.push(next);
    52             }
    53         }
    54     }
    55     return -1;
    56 }
    57 
    58 int main(){
    59     int t,i,j;
    60     cin>>t;
    61     while(t--){
    62         cin>>n>>m;
    63         for(i=0;i<n;i++)
    64             for(j=0;j<m;j++){
    65                 scanf("%d",&map[i][j]);
    66                 if(map[i][j]==2)
    67                     sx=i,sy=j;
    68                 else if(map[i][j]==3){
    69                     ex=i,ey=j;
    70                     map[i][j] = 1;
    71                 }
    72             }
    73         cout<<bfs()<<endl;
    74     }
    75     return 0;
    76 }
     
     
  • 相关阅读:
    Spring Cloud Gateway 数据库存储路由信息的扩展方案
    Spring GateWay 路由源码分析
    SpringCloud实战十四:Gateway之 Spring Cloud Gateway 动态路由进阶
    SpringCloud实战十三:Gateway之 Spring Cloud Gateway 动态路由
    springcloudgateway动态路由
    信息学奥赛一本通(C++)在线评测系统——基础(一)C++语言——1074:津津的储蓄计划
    信息学奥赛一本通(C++)在线评测系统——基础(一)C++语言——1073:救援
    信息学奥赛一本通(C++)在线评测系统——基础(一)C++语言——1073:救援
    信息学奥赛一本通(C++)在线评测系统——基础(一)C++语言——1073:救援
    信息学奥赛一本通(C++)在线评测系统——基础(一)C++语言——1072:鸡尾酒疗法
  • 原文地址:https://www.cnblogs.com/pngcui/p/4363602.html
Copyright © 2011-2022 走看看