XDOJ_1157_并查集

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XDOJ_1157_并查集相关的知识,希望对你有一定的参考价值。

http://acm.xidian.edu.cn/problem.php?id=1157

 

技术分享

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int point[100005];
struct line
{
    int v,u,w;
}l[1000005];
int n,pre[100005];

bool cmp(line x,line y)
{
    return x.w < y.w;
}

int findd(int x)
{
    int root = x;
    while(root != pre[root])    root = pre[root];
    int temp;
    while(x != pre[x])
    {
        temp = pre[x];
        pre[x] = root;
        x = temp;
    }
    return root;
}

int main()
{
    while(~scanf("%d",&n))
    {
        long long ans = 0;
        for(int i = 1;i < n;i++)    scanf("%d%d%d",&l[i].u,&l[i].v,&l[i].w);
        sort(l+1,l+n,cmp);
        for(int i = 1;i <= n;i++)
        {
            pre[i] = i;
            point[i] = 1;
        }
        for(int i = 1;i < n;i++)
        {
            int x = findd(l[i].u),y = findd(l[i].v);
            ans += (long long)point[x]*point[y]*l[i].w;
            pre[x] = y;
            point[y] += point[x];
        }
        for(int i = 1;i <= n;i++)
        {
            pre[i] = i;
            point[i] = 1;
        }
        for(int i = n-1;i >= 1;i--)
        {
            int x = findd(l[i].u),y = findd(l[i].v);
            ans -= (long long)point[x]*point[y]*l[i].w;
            pre[x] = y;
            point[y] += point[x];
        }
        printf("%lld\\n",ans);
    }
    return 0;
}

 

以上是关于XDOJ_1157_并查集的主要内容,如果未能解决你的问题,请参考以下文章

Farm Irrigation_深搜_并查集

复习并查集思想_二叉树最大深度问题_几种做法_并查集/递归/递推/最长路径_多种办法实现

HDU_1232_并查集

nyoj_1022:合纵连横(并查集删点)

HDU_3038_并查集

hiho_1066_并查集