zoukankan      html  css  js  c++  java
  • HDU 4771 Stealing Harry Potter's Precious dfs+bfs

    Stealing Harry Potter's Precious

    Problem Description
      Harry Potter has some precious. For example, his invisible robe, his wand and his owl. When Hogwarts school is in holiday, Harry Potter has to go back to uncle Vernon's home. But he can't bring his precious with him. As you know, uncle Vernon never allows such magic things in his house. So Harry has to deposit his precious in the Gringotts Wizarding Bank which is owned by some goblins. The bank can be considered as a N × M grid consisting of N × M rooms. Each room has a coordinate. The coordinates of the upper-left room is (1,1) , the down-right room is (N,M) and the room below the upper-left room is (2,1)..... A 3×4 bank grid is shown below:



      Some rooms are indestructible and some rooms are vulnerable. Goblins always care more about their own safety than their customers' properties, so they live in the indestructible rooms and put customers' properties in vulnerable rooms. Harry Potter's precious are also put in some vulnerable rooms. Dudely wants to steal Harry's things this holiday. He gets the most advanced drilling machine from his father, uncle Vernon, and drills into the bank. But he can only pass though the vulnerable rooms. He can't access the indestructible rooms. He starts from a certain vulnerable room, and then moves in four directions: north, east, south and west. Dudely knows where Harry's precious are. He wants to collect all Harry's precious by as less steps as possible. Moving from one room to another adjacent room is called a 'step'. Dudely doesn't want to get out of the bank before he collects all Harry's things. Dudely is stupid.He pay you $1,000,000 to figure out at least how many steps he must take to get all Harry's precious.
     
    Input
      There are several test cases.
      In each test cases:
      The first line are two integers N and M, meaning that the bank is a N × M grid(0<N,M <= 100).
      Then a N×M matrix follows. Each element is a letter standing for a room. '#' means a indestructible room, '.' means a vulnerable room, and the only '@' means the vulnerable room from which Dudely starts to move.
      The next line is an integer K ( 0 < K <= 4), indicating there are K Harry Potter's precious in the bank.
      In next K lines, each line describes the position of a Harry Potter's precious by two integers X and Y, meaning that there is a precious in room (X,Y).
      The input ends with N = 0 and M = 0
     
    Output
      For each test case, print the minimum number of steps Dudely must take. If Dudely can't get all Harry's things, print -1.
     
    Sample Input
    2 3 ##@ #.# 1 2 2 4 4 #@## .... #### .... 2 2 1 2 4 0 0
     
    Sample Output
    -1 5
     
    Source
     
    题意:给你一个@起点,n*m的图,再给你q个宝石位置,求集齐所有宝石的最短路
    题解:可以求出所有宝石,起点之间的最短路,再暴力求最佳方案;
    ///1085422276
    #include<bits/stdc++.h>
    using namespace std ;
    typedef long long ll;
    #define mem(a) memset(a,0,sizeof(a))
    #define meminf(a) memset(a,127,sizeof(a));
    #define inf 100000007
    inline ll read()
    {
        ll x=0,f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){
            if(ch=='-')f=-1;ch=getchar();
        }
        while(ch>='0'&&ch<='9'){
            x=x*10+ch-'0';ch=getchar();
        }return x*f;
    }
    //****************************************
    #define maxn 105
    int dis[maxn][maxn],vis[maxn][maxn],v[maxn],n,m,q,st,ed;
    int mp[maxn][maxn],mps[maxn][maxn],a[maxn],b[maxn],ans;
    int ss[4][2]={-1,0,0,-1,1,0,0,1};
    bool check(int x,int y){
       if(x<=0||y<=0||x>n||y>m)return 1;return 0;
    }
    void bfs(int x,int y){
       mem(vis);memset(dis,127/2,sizeof(dis));
       queue<pair<int ,int > >q;
       q.push(make_pair(x,y));
       vis[x][y]=1;dis[x][y]=0;
       while(!q.empty()){
        pair<int ,int >k;
        k=q.front();q.pop();
        for(int i=0;i<4;i++){
            int xx=k.first+ss[i][0];
            int yy=k.second+ss[i][1];
            if(check(xx,yy)||mp[xx][yy]=='#'||vis[xx][yy])continue;
            dis[xx][yy]=dis[k.first][k.second]+1;
            vis[xx][yy]=1;q.push(make_pair(xx,yy));
        }
       }
    }
    void floyd(int x,int sum)
    {
        v[x]=1;
        bool flag=1;
        for(int i=1;i<=q;i++){
            if(!v[i])flag=0;
        }
         if(flag)ans=min(ans,sum);
        int tmp=inf*2;
        for(int i=1;i<=q;i++)
        {
            if(!v[i]&&mp[x][i]!=0){
              floyd(i,sum+mps[x][i]);
            }
        }
        v[x]=0;
    }
    void test(){
     for(int i=1;i<=q;i++){
        for(int j=1;j<=q;j++){
            cout<<mps[i][j]<<" ";
        }
        cout<<endl;
     }
    }
    int main()
    {
    
        while(scanf("%d%d",&n,&m)&&n&&m){
            for(int i=1;i<=n;i++){
                    getchar();
                for(int j=1;j<=m;j++){
                    scanf("%c",&mp[i][j]);
                    if(mp[i][j]=='@'){st=i;ed=j;}
                }
            }
            q=read();
            for(int i=1;i<=q;i++){
                 scanf("%d%d",&a[i],&b[i]);
            }q++;a[q]=st;b[q]=ed;mem(mps);
            for(int i=1;i<=q;i++){
                bfs(a[i],b[i]);//test();//return 0;
                for(int j=1;j<=q;j++){
                    if(j!=i){
                        mps[i][j]=dis[a[j]][b[j]];
                    }
                }
            }mem(v);//test();//cout<<q<<endl;
            ans=inf;floyd(q,0);if(ans>=inf)ans=-1;
            printf("%d
    ",ans);
        }
        return 0;
    }
    代码
  • 相关阅读:
    ajax是什么? ajax的交互模型? 同步和异步的区别? 如何解决跨域问题?
    集锦 比较好
    集锦
    伊甸园日历游戏
    晴天小猪历险记之Hill
    求无向图最小环算法
    旅行商简化版
    十字绣
    破坏石油运输系统问题
    强墙
  • 原文地址:https://www.cnblogs.com/zxhl/p/4910101.html
Copyright © 2011-2022 走看看