POJ 2560 Freckles - (MST - Kruskal+并查集)

题目链接:http://poj.org/problem?id=2560

注意io

#include <stdio.h>  
#include <vector>   
#include <algorithm>
#include <cmath>
#include <queue>
using namespace std;

//POJ 2560 Freckles

typedef struct Edge_info
{
    float length;
    int in, out;
    Edge_info() {}
    Edge_info(float l, int i, int o)
        :length(l), in(i), out(o) {}
};

typedef struct Node
{
    float x, y;
    Node() {}
    Node(int _x, int _y) :x(_x), y(_y) {}
};
typedef struct
{
    bool operator()(const Edge_info& lhs, const Edge_info& rhs)
    {
        return lhs.length > rhs.length;
    }
}Comp;

inline int getFather(int *p, int x)
{
    if (p[x] == x)return x;
    p[x] = getFather(p, p[x]);
    return p[x];
}

inline void un(int *p, int x, int y)
{
    int fx = getFather(p, x);
    int fy = getFather(p, y);
    p[fx] = fy;
}

inline bool judge(int *p, int x, int y)
{
    return getFather(p, x) == getFather(p, y);
}

int main()
{
    int n;
    while (~scanf("%d", &n))
    {
        if (n == 0)break;
        vector<Node> nodes(n);
        float x, y;
        for (int i = 0; i < n; ++i)
        {
            scanf("%f%f", &x, &y);
            nodes[i] = Node(x, y);
        }
        vector<Edge_info> edge(n*(n - 1));
        int edge_count = 0;
        float dist;
        for (int i = 0; i < n; ++i)
            for (int j = 0; j < n; ++j)
            {
                if (i == j)continue;
                x = nodes[i].x - nodes[j].x;
                y = nodes[i].y - nodes[j].y;
                dist = sqrt(x*x + y*y);
                edge[edge_count++] = Edge_info(dist, i, j);
            }
        priority_queue<Edge_info, vector<Edge_info>, Comp> pq(Comp(), edge);
        //Kruskal
        int *p = new int[n];
        for (int i = 0; i < n; ++i)
            p[i] = i;
        float total_length = 0.0f;
        for (int i = 0; i < n - 1; ++i)
        {
            bool isValid = false;
            while (!isValid)
            {
                Edge_info e = pq.top(); pq.pop();
                if (judge(p, e.in, e.out))continue;
                isValid = true;
                un(p, e.in, e.out);
                total_length += e.length;
            }
        }
        printf("%.2f\n", total_length);
        delete[] p;
    }
    system("pause");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值