poj 3026 Borg Maze (bfs + 最小生成树)

链接:poj 3026

题意:y行x列的迷宫中,#代表阻隔墙(不可走),空格代表空位(可走),S代表搜索起点(可走)

A代表外星人站(可走),现在要从S出发,将S和所有的A之间都连通,求路线总距离最小值

分析:可以先用bfs将所有的A,S两两之间的最短距离,题目的目的是将S与所有的A连通,使得总距离最小,

所有任选一点开始按最小生成树的算法做就行,并非非要从S点开始

注:题目输入x,y后可能有很多空格,可以用gets将多余的空格取走,开数组是尽量开大点,之前虽然开的比题目数据     稍大,但一直错,改大就AC了、、、题目数据不忍直视

#include<cstdio>
#include<queue>
#include<algorithm>
#include<cstring>
using namespace std;
const int dx[]={1,0,-1,0};
const int dy[]={0,1,0,-1};
int m,n,x,y,f[1050],num[1050][1050];       //之前都是105
struct point
{
    int i,j;
}a[1050];
struct stu
{
    int a,b,c;
}t[100500];            //之前开的10050
char s[100][100];
int cmp(struct stu x1,struct stu x2)
{
    return x1.c<x2.c;
}
void bfs(int star)
{
    int i,j,k,dis[100][100],v[100][100];
    queue<struct point> q;
    struct point d;
    memset(dis,0,sizeof(dis));
    memset(v,0,sizeof(v));
    q.push(a[star]);
    v[a[star].i][a[star].j]=1;
    while(!q.empty()){
        d=q.front();
        q.pop();
        i=d.i;
        j=d.j;
        if(s[i][j]=='A'||s[i][j]=='S'){
            t[m].a=star;
            t[m].b=num[i][j];
            t[m++].c=dis[i][j];
        }
        for(k=0;k<4;k++)
        {
            d.i=i+dx[k];
            d.j=j+dy[k];
            if(d.i>=0&&d.i<y&&d.j>=0&&d.j<x&&!v[d.i][d.j]&&s[d.i][d.j]!='#')
            {
                q.push(d);
                v[d.i][d.j]=1;
                dis[d.i][d.j]=dis[i][j]+1;
            }
        }
    }
}
int find(int r)
{
    if(r!=f[r])
        f[r]=find(f[r]);
    return f[r];
}
int krus()
{
    int i,k=0,sum=0,l,r;
    for(i=1;i<m;i++){
        l=find(t[i].a);
        r=find(t[i].b);
        if(l!=r){
            sum+=t[i].c;
            k++;
            if(k==n-1)
                break;
            f[l]=r;
        }
    }
    return sum;
}
int main()
{
    int N,i,j,sum;
    char c[55];
    scanf("%d",&N);
    while(N--){
        scanf("%d%d",&x,&y);
        gets(c);             //将多余空格取走
        n=1;
        for(i=0;i<y;i++){
            gets(s[i]);
            for(j=0;j<x;j++)
                if(s[i][j]=='A'||s[i][j]=='S'){
                    a[n].i=i;                //存A或S的坐标
                    a[n].j=j;
                    num[i][j]=n++;            //存点的序号
                }
        }
        n--;
        m=1;
        for(i=1;i<=n;i++){
            f[i]=i;              //初始化父节点
            bfs(i);              //求以i为一个顶点的所有边的权值
        }
        sort(t+1,t+m,cmp);
        sum=krus();
        printf("%d\n",sum);
    }
    return 0;
}

poj 3026 Borg Maze (bfs + 最小生成树),布布扣,bubuko.com

时间: 2024-10-02 08:05:44

poj 3026 Borg Maze (bfs + 最小生成树)的相关文章

POJ - 3026 Borg Maze BFS加最小生成树

Borg Maze 题意: 题目我一开始一直读不懂.有一个会分身的人,要在一个地图中踩到所有的A,这个人可以在出发地或者A点任意分身,问最少要走几步,这个人可以踩遍地图中所有的A点. 思路: 感觉就算读懂了题目,也比较难想到这用到了最小生成树的知识,因为可以分身,所以每个点可以向其他点都连上边.可以用bfs预处理出所有的S点,A点的连线,再跑一遍最小生成树,即可得出答案.这里有几点注意,一开始我bfs没有记录step,而是直接找到一点后算曼哈顿距离,这是不对的,因为可能是绕了一个圈到了这个点.还

poj 3026 Borg Maze(bfs+prim)

Borg Maze Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10810   Accepted: 3574 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 desc

poj 3026 Borg Maze(最小生成树+bfs)

题目链接:http://poj.org/problem?id=3026 题意:题意就是从起点开始可以分成多组总权值就是各组经过的路程,每次到达一个‘A'点可以继续分组,但是在路上不能分组 于是就是明显的最小生成树,点与点的距离要用bfs或者dfs求一下.这题bfs要稍微优化一下.不能下暴力的bfs就是两点两点之间 bfs这样会有很多重复的查询会超时,所以要一次性的bfs找到一个点就bfs到底. #include <iostream> #include <algorithm> #in

POJ 3026 Borg Maze(bfs + prime)

解题思路: 先用BFS预处理出每个字母节点到其它节点的最短路径,然后套用prime算法. #include <iostream> #include <cstring> #include <cstdlib> #include <cstdio> #include <algorithm> #include <queue> #include <stack> #include <vector> #include <

POJ 3026 Borg Maze &amp; UVA 10307 Killing Aliens in Borg Maze(BFS,最小生成树)

http://poj.org/problem?id=3026 http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1248 Borg Maze Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 8498   Accepted: 2862 Description The Bor

POJ 3026 Borg Maze

Borg Maze Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7998   Accepted: 2675 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 descr

POJ3026——Borg Maze(BFS+最小生成树)

Borg Maze DescriptionThe 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

POJ 3026 Borg Maze【BFS+最小生成树MST】

Borg Maze Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12014 Accepted: 3925 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

POJ 3026 --Borg Maze(bfs,最小生成树,英语题意题,卡格式)

Borg Maze Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16625   Accepted: 5383 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 desc