【POJ 3026】Borg Maze

【POJ 3026】Borg Maze

一个考察队搜索alien 这个考察队可以无限分割 问搜索到所有alien所需要的总步数 即求一个无向图 包含所有的点并且总权值最小(最小生成树

BFS+最小生成树

Prim/Kruskal…懒死了 就这么贴吧……凑活看( ̄┰ ̄*)

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <queue>
#include <algorithm>
#define INF 0x3f3f3f3f

using namespace std;

typedef struct Point
{
    int x,y;
}Point;

typedef struct Edge
{
    int u,v,w;
    bool operator < (const struct Edge a)const
    {
        return w < a.w;
    }
}Edge;

Edge eg[10100];
bool vs[101][101];
Point p[101];
char mp[51][52];
int id[51][51];
int dis[101][101];
bool vis[51][51];
//int dss[101];
//bool vs[101];
int dirx[] = { 0, 0, 1,-1};
int diry[] = { 1,-1, 0, 0};
int ds[51][51];
int tp,x,y,top;
int pre[101];

void Bfs(int xx,int yy)
{
    memset(vis,0,sizeof(vis));
    queue <pair<int,int> > q;
    q.push(pair<int,int> (xx,yy));
    vis[xx][yy] = 1;
    ds[xx][yy] = 0;
    int i,aa,bb,a,b;
    while(!q.empty())
    {
        pair <int,int> pt = q.front();
        q.pop();
        a = pt.first;
        b = pt.second;
        for(i = 0; i < 4; ++i)
        {
            aa = a+dirx[i];
            bb = b+diry[i];
            if(aa > x || bb > y || aa < 1 || bb < 1 || mp[aa][bb] == ‘#‘ || vis[aa][bb]) continue;
            ds[aa][bb] = ds[a][b]+1;
            vis[aa][bb] = 1;
            q.push(pair<int,int> (aa,bb));
//            if(mp[aa][bb] != ‘ ‘) dis[id[xx][yy]][id[aa][bb]] = dis[id[aa][bb]][id[xx][yy]] = ds[aa][bb];
            if(mp[aa][bb] != ‘ ‘ && !vs[id[xx][yy]][id[aa][bb]])
            {
                vs[id[xx][yy]][id[aa][bb]] = vs[id[aa][bb]][id[xx][yy]] = 1;
                eg[top].u = id[xx][yy];
                eg[top].v = id[aa][bb];
                eg[top++].w = ds[aa][bb];
            }
        }
    }
}

void Init(int n)
{
    int i;
    for(i = 0; i < n; ++i)
        pre[i] = i;
}

int Find(int x)
{
    if(x != pre[x]) pre[x] = Find(pre[x]);
    return pre[x];
}

//int Prim()
//{
//    memset(vs,0,sizeof(vs));
//    memset(dss,INF,sizeof(dss));
//    dss[0] = 0;
//    int i,j,p,w,sum = 0;
//    for(i = 0; i < tp; ++i)
//    {
//        w = INF;
//        for(j = 0; j < tp; ++j)
//        {
//            if(!vs[j] && w > dss[j])
//            {
//                w = dss[j];
//                p = j;
//            }
//        }
//        sum += w;
//        vs[p] = 1;
//        for(j = 0; j < tp; ++j)
//        {
//            if(!vs[j] && dss[j] > dis[p][j])
//                dss[j] = dis[p][j];
//        }
//    }
//    return sum;
//}

int main()
{
    int n,i,j;
    int cnt,sum,k,r;
    scanf("%d",&n);
    while(n--)
    {
        memset(vs,0,sizeof(vs));
        tp = top = 0;
        scanf("%d %d",&y,&x);
        gets(mp[0]);
        for(i = 1; i <= x; ++i)
        {
            gets(mp[i]+1);
            for(j = 1; mp[i][j]; ++j)
            {
                if(mp[i][j] != ‘#‘ && mp[i][j] != ‘ ‘)
                {
                    id[i][j] = tp;
                    p[tp].x = i;
                    p[tp++].y = j;
                }
            }
        }
        Init(tp);
        for(i = 0; i < tp; ++i)
        {
            Bfs(p[i].x,p[i].y);
        }
//        printf("%d\n",Prim());
        sort(eg,eg+top);
        sum = cnt = 0;
        for(i = 0; i < top; ++i)
        {
            k = Find(eg[i].u);
            r = Find(eg[i].v);
            if(k != r)
            {
                pre[k] = r;
                sum += eg[i].w;
                cnt++;
            }
            if(cnt == tp) break;
        }
        printf("%d\n",sum);
    }
    return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-08-12 06:11:40

【POJ 3026】Borg Maze的相关文章

POJ 3026:Borg Maze(BFS建图+prim+MST)

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

【POJ 1408】 Fishnet (叉积求面积)

[POJ 1408] Fishnet (叉积求面积) 一个1*1㎡的池塘 有2*n条线代表渔网 问这些网中围出来的最大面积 一个有效面积是相邻两行和相邻两列中间夹的四边形 Input为n 后面跟着四行 每行n个浮点数 每一行分别代表a,b,c,d 如图 并且保证a(i) > a(i-1) b(i) > b(i-1) c(i) > c(i-1) d(i) > d(i-1) n(n <= 30)*2+4(四个岸)条边 枚举点数就行 相邻的四个四个点枚举 找出围出的最大面积 找点用

【POJ 2513】Colored Sticks

[POJ 2513]Colored Sticks 并查集+字典树+欧拉通路 第一次做这么混的题..太混了-- 不过题不算难 字典树用来查字符串对应图中的点 每个单词做一个点(包括重复单词 题意就是每个边走且直走一次(欧拉通路 欧拉图的判定: 没有或者只有两个奇数度的点的图叫做欧拉图 有这些就可以解答此题了 另外需要注意题目范围是25W个木棍 所以最多可能有50W个点 卡了好多个RE 代码如下: #include <iostream> #include <cstdlib> #incl

2292: 【POJ Challenge 】永远挑战

2292: [POJ Challenge ]永远挑战 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 553  Solved: 230[Submit][Status][Discuss] Description lqp18_31和1tthinking经常出题来虐ftiasch.有一天, lqp18_31搞了一个有向图,每条边的长度都是1. 他想让ftiasch求出点1到点 N 的最短路."水题啊.", ftiasch这么说道. 所以1tth

【POJ 1201】 Intervals(差分约束系统)

[POJ 1201] Intervals(差分约束系统) 11 1716的升级版 把原本固定的边权改为不固定. Intervals Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 23817   Accepted: 9023 Description You are given n closed, integer intervals [ai, bi] and n integers c1, ..., cn. Write a p

【POJ 1228】Grandpa&#39;s Estate 凸包

找到凸包后暴力枚举边进行$check$,注意凸包是一条线(或者说两条线)的情况要输出$NO$ #include<cmath> #include<cstdio> #include<cstring> #include<algorithm> #define N 1003 #define read(x) x = getint() using namespace std; inline int getint() { int k = 0, fh = 1; char c

【POJ 2750】 Potted Flower(线段树套dp)

[POJ 2750] Potted Flower(线段树套dp) Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 4566   Accepted: 1739 Description The little cat takes over the management of a new park. There is a large circular statue in the center of the park, surrou

【POJ 2480】Longge&#39;s problem(欧拉函数)

题意 求$ \sum_{i=1}^n gcd(i,n) $ 给定 $n(1\le n\le 2^{32}) $. 链接 分析 用欧拉函数$φ(x)$求1到x-1有几个和x互质的数. gcd(i,n)必定是n的一个约数.若p是n的约数,那么gcd(i,n)==p的有$φ(n/p)$个数,因为要使gcd(i,n)==p,i/p和n/p必须是互质的.那么就是求i/p和n/p互质的i在[1,n]里有几个,就等价于,1/p,2/p,...,n/p里面有几个和n/p互质,即φ(n/p). 求和的话,约数为p

【POJ 3321】 Apple Tree (dfs重标号设区间+树状数组求和)

[POJ 3321] Apple Tree (dfs重标号设区间+树状数组求和) Apple Tree Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 21966   Accepted: 6654 Description There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. K