zoukankan      html  css  js  c++  java
  • POJ Borg Maze (BFS+最小生成树)

    Borg Maze
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 10428   Accepted: 3463

    Description

    The Borg is an immensely powerful race of enhanced humanoids from the delta quadrant of the galaxy. The Borg collective is the term used to describe the group consciousness of the Borg civilization. Each Borg individual is linked to the collective by a sophisticated subspace network that insures each member is given constant supervision and guidance. 

    Your task is to help the Borg (yes, really) by developing a program which helps the Borg to estimate the minimal cost of scanning a maze for the assimilation of aliens hiding in the maze, by moving in north, west, east, and south steps. The tricky thing is that the beginning of the search is conducted by a large group of over 100 individuals. Whenever an alien is assimilated, or at the beginning of the search, the group may split in two or more groups (but their consciousness is still collective.). The cost of searching a maze is definied as the total distance covered by all the groups involved in the search together. That is, if the original group walks five steps, then splits into two groups each walking three steps, the total distance is 11=5+3+3.

    Input

    On the first line of input there is one integer, N <= 50, giving the number of test cases in the input. Each test case starts with a line containg two integers x, y such that 1 <= x,y <= 50. After this, y lines follow, each which x characters. For each character, a space `` '' stands for an open space, a hash mark ``#'' stands for an obstructing wall, the capital letter ``A'' stand for an alien, and the capital letter ``S'' stands for the start of the search. The perimeter of the maze is always closed, i.e., there is no way to get out from the coordinate of the ``S''. At most 100 aliens are present in the maze, and everyone is reachable.

    Output

    For every test case, output one line containing the minimal cost of a succesful search of the maze leaving no aliens alive.

    Sample Input

    2
    6 5
    ##### 
    #A#A##
    # # A#
    #S  ##
    ##### 
    7 7
    #####  
    #AAA###
    #    A#
    # S ###
    #     #
    #AAA###
    #####  
    

    Sample Output

    8
    11

    Source

     
    把A,S看成相同的点,用BFS生成所有点之间的距离再跑一遍最小生成树
    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<cstdio>
    #include<string>
    #include<iostream>
    #include<cstring>
    #include<cmath>
    #include<stack>
    #include<queue>
    #include<vector>
    #include<map>
    #include<stdlib.h>
    #include<algorithm>
    #define LL __int64
    using namespace std;
    const int MAXN=100+5;
    const int INF=0x3f3f3f3f;
    int kase,n,m,tot;
    char mat[MAXN][MAXN];
    int a[MAXN][MAXN];
    int w[MAXN][MAXN];
    int wis[MAXN*MAXN];
    int vis[MAXN][MAXN];
    int d[MAXN];
    int dir[4][2]={{0,1},{1,0},{0,-1},{-1,0}};
    char opt[10];
    struct node
    {
        int x,y;
        int step;
    }s;
    void BFS(int sx,int sy)
    {
        memset(vis,0,sizeof(vis));
        queue<node> Q;
        while(!Q.empty()) Q.pop();
        s.x=sx,s.y=sy,s.step=0;
        vis[sx][sy]=1;
        Q.push(s);
        while(!Q.empty())
        {
            node now,next;
            now=Q.front();Q.pop();
    //        printf("%d %d
    ",now.x,now.y);
            if(mat[now.x][now.y]=='A' || mat[now.x][now.y]=='S')
                w[a[sx][sy]][a[now.x][now.y]]=now.step;
    
            for(int i=0;i<4;i++)
            {
                next.x=now.x+dir[i][0];
                next.y=now.y+dir[i][1];
                if(mat[next.x][next.y]!='#' && !vis[next.x][next.y] && 1<=next.x && next.x<=n && 1<=next.y && next.y<=m)
                {
                    next.step=now.step+1;
                    vis[next.x][next.y]=1;
                    Q.push(next);
                }
            }
        }
    }
    void prim()
    {
        memset(wis,0,sizeof(wis));
        for(int i=2;i<tot;i++) d[i]=w[1][i];
        wis[1]=1;
        int ans=0;
    
        for(int i=1;i<tot-1;i++)
        {
            int tmp,minn=INF;
            for(int j=1;j<tot;j++)
            {
                if(!wis[j] && d[j]<minn)
                {
                    minn=d[j];
                    tmp=j;
                }
            }
            if(minn==INF) break;
            wis[tmp]=1;
            ans+=minn;
            for(int j=1;j<tot;j++)
                if(!wis[j] && w[tmp][j]<d[j])
                    d[j]=w[tmp][j];
        }
        printf("%d
    ",ans);
    }
    int main()
    {
        //freopen("in.txt","r",stdin);
        scanf("%d",&kase);
        while(kase--)
        {
            memset(w,0,sizeof(w));
            scanf("%d %d",&m,&n);
            gets(mat[0]);
            tot=1;
            memset(a,-1,sizeof(a));
    
            for(int i=1;i<=n;i++)
            {
                gets(mat[i]+1);
                printf("%s",mat[i]);
                for(int j=1;j<=m;j++)
                    if(mat[i][j]=='A' || mat[i][j]=='S')
                        a[i][j]=tot++;
            }
    
            for(int i=1;i<=n;i++)
                for(int j=1;j<=m;j++)
                    if(a[i][j]!=-1)
                        BFS(i,j);
    
            prim();
        }
        return 0;
    }
    View Code
  • 相关阅读:
    连续子数组的最大和
    最小的K个数
    数组中出现次数超过一半的数字
    字符串的排列
    二叉搜索树与双向链表
    复杂链表的复制
    二叉树中和为某一值的路径
    二叉搜索树的后序遍历序列
    Xcode5下去除Icon高光
    Unity3D-基本导航(NavMesh)功能实现
  • 原文地址:https://www.cnblogs.com/clliff/p/4709585.html
Copyright © 2011-2022 走看看