zoukankan      html  css  js  c++  java
  • icpc 2018 北京网络赛 A(搜索)

     Saving Tang Monk II

    时间限制:1000ms
    单点时限:1000ms
    内存限制:256MB

    描述

    《Journey to the West》(also 《Monkey》) is one of the Four Great Classical Novels of Chinese literature. It was written by Wu Cheng'en during the Ming Dynasty. In this novel, Monkey King Sun Wukong, pig Zhu Bajie and Sha Wujing, escorted Tang Monk to India to get sacred Buddhism texts.

    During the journey, Tang Monk was often captured by demons. Most of demons wanted to eat Tang Monk to achieve immortality, but some female demons just wanted to marry him because he was handsome. So, fighting demons and saving Monk Tang is the major job for Sun Wukong to do.

    Once, Tang Monk was captured by the demon White Bones. White Bones lived in a palace and she cuffed Tang Monk in a room. Sun Wukong managed to get into the palace, and he wanted to reach Tang Monk and rescue him.

    The palace can be described as a matrix of characters. Different characters stand for different rooms as below:

    'S' : The original position of Sun Wukong

    'T' : The location of Tang Monk

    '.' : An empty room

    '#' : A deadly gas room.

    'B' : A room with unlimited number of oxygen bottles. Every time Sun Wukong entered a 'B' room from other rooms, he would get an oxygen bottle. But staying there would not get Sun Wukong more oxygen bottles. Sun Wukong could carry at most 5 oxygen bottles at the same time.

    'P' : A room with unlimited number of speed-up pills. Every time Sun Wukong entered a 'P' room from other rooms, he would get a speed-up pill. But staying there would not get Sun Wukong more speed-up pills. Sun Wukong could bring unlimited number of speed-up pills with him.

    Sun Wukong could move in the palace. For each move, Sun Wukong might go to the adjacent rooms in 4 directions(north, west,south and east). But Sun Wukong couldn't get into a '#' room(deadly gas room) without an oxygen bottle. Entering a '#' room each time would cost Sun Wukong one oxygen bottle.

    Each move took Sun Wukong one minute. But if Sun Wukong ate a speed-up pill, he could make next move without spending any time. In other words, each speed-up pill could save Sun Wukong one minute. And if Sun Wukong went into a '#' room, he had to stay there for one extra minute to recover his health.

    Since Sun Wukong was an impatient monkey, he wanted to save Tang Monk as soon as possible. Please figure out the minimum time Sun Wukong needed to reach Tang Monk.

    输入

    There are no more than 25 test cases.

    For each case, the first line includes two integers N and M(0 < N,M ≤ 100), meaning that the palace is a N × M matrix.

    Then the N×M matrix follows.

    The input ends with N = 0 and M = 0.

    输出

    For each test case, print the minimum time (in minute) Sun Wukong needed to save Tang Monk. If it's impossible for Sun Wukong to complete the mission, print -1

    样例输入
    2 2
    S#
    #T
    2 5
    SB###
    ##P#T
    4 7
    SP.....
    P#.....
    ......#
    B...##T
    0 0
    样例输出
    -1
    8
    11
    //傻逼搜索,不知道比赛的时候哪里写残了
    
    #include <bits/stdc++.h>
    using namespace std;
    const int maxn=110;
    char mp[maxn][maxn];
    bool vis[maxn][maxn][10];
    struct node{
        int x,y,step,b;
        inline bool operator<(const node &rhs) const {
             return step>rhs.step;    }
    }now,tmp;
    int n,m,sx,sy;
    
    inline bool check(int x,int y){
        if(x>=0 && x<n &&y>=0 &&y<m) return true;
        return false;
    }
    
    int go[4][2]={
        {-1,0},{1,0},{0,-1},{0,1}
    };
    
    int bfs(){
        memset(vis,false,sizeof(vis));
        priority_queue<node>q;
        q.push(node{sx,sy,0,0});
        vis[sx][sy][0]=1;
        while(!q.empty()){
            now=q.top();
            q.pop();
            if(mp[now.x][now.y]=='T') return now.step;
            for (int i=0; i<4; i++){
                tmp=now;
                int nx=now.x+go[i][0],ny=now.y+go[i][1];
                tmp.x=nx,tmp.y=ny;
                if(!check(nx,ny)) continue;
                if(mp[nx][ny]=='B'){
                    tmp.step++;
                    tmp.b=min(tmp.b+1,5);
                    if(!vis[nx][ny][tmp.b]){
                        vis[nx][ny][tmp.b]=1;
                        q.push(tmp);
                    }
                } else if(mp[nx][ny]=='P'){
                    if(!vis[nx][ny][tmp.b]){
                        vis[nx][ny][tmp.b]=1;
                        q.push(tmp);
                    }
                } else if(mp[nx][ny]=='#'){
                    if(!tmp.b) continue;
                    tmp.b--;
                    tmp.step+=2;
                    if(!vis[nx][ny][tmp.b]){
                        vis[nx][ny][tmp.b]=1;
                        q.push(tmp);
                    }
                } else {
                    tmp.step++;
                    if(!vis[nx][ny][tmp.b]){
                        vis[nx][ny][tmp.b]=1;
                        q.push(tmp);
                    }
                }
            }
        }
        return -1;
    }
    int main(){
        while(scanf("%d%d",&n,&m)==2,n+m){
            for (int i=0; i<n; i++){
                scanf("%s",mp[i]);
                for (int j=0; mp[i][j]; ++j){
                    if(mp[i][j]=='S')
                        sx=i,sy=j;
                }
            }
            int ans=bfs();
            printf("%d
    ",ans);
        }
        return 0;
    }
    View Code
  • 相关阅读:
    React Native从入门到放弃之坑总结
    React Native从入门到放弃之环境搭建
    flex弹性布局语法介绍及使用
    JavaScript ES6中export及export default的区别
    解决webstorm本地IP访问页面出错的问题
    UEFI+GPT与BIOS+MBR各自有什么优缺点?
    解决U盘拷贝时提示文件过大问题(不能拷贝超过4个g的文件)
    U盘安装原版Win7或Win8教程
    安装win8/win10提示无法在驱动器0分区上安装windows解决方法
    idea 编译报错 未结束的字符串字面值,非法的类型开始
  • 原文地址:https://www.cnblogs.com/acerkoo/p/9691632.html
Copyright © 2011-2022 走看看