3390: [Usaco2004 Dec]Bad Cowtractors牛的报复 最大生成树

没想到第300题竟是一个水题(QAQ你不是故意找的水题吗?)。
最大生成树。。。

2016年1月12日21:30:27 AC300纪念

#include<bits/stdc++.h>
using namespace std;
int n,m,tot,ans;
struct node {int x,y,z;} e[20005];
int f[1005];
inline int read()
{
    int a=0,f=1; char c=getchar();
    while (c<'0'||c>'9') {if (c=='-') f=-1; c=getchar();}
    while (c>='0'&&c<='9') {a=a*10+c-'0'; c=getchar();}
    return a*f;
}
int find(int i)
{
    return f[i]==i?i:f[i]=find(f[i]);
}
inline bool cmp(node a,node b)
{
    return a.z>b.z;
}
int main()
{
    n=read(); m=read();
    for (int i=1;i<=n;i++) f[i]=i;
    for (int i=1;i<=m;i++)
        e[i].x=read(),e[i].y=read(),e[i].z=read();
    sort(e+1,e+m+1,cmp);
    for (int i=1;i<=m;i++)
    {
        int p=find(e[i].x),q=find(e[i].y);
        if (p!=q)
        {
            f[p]=q;
            tot++;
            ans+=e[i].z;
            if (tot==n-1) break;
        }
    }
    if (tot<n-1) puts("-1"); else cout << ans;
}

你可能感兴趣的:(3390: [Usaco2004 Dec]Bad Cowtractors牛的报复 最大生成树)