CodeForces - 875F Royal Questions (基环树)

Royal Questions

 

In a medieval kingdom, the economic crisis is raging. Milk drops fall, Economic indicators are deteriorating every day, money from the treasury disappear. To remedy the situation, King Charles Sunnyface decided make his n sons-princes marry the brides with as big dowry as possible.

In search of candidates, the king asked neighboring kingdoms, and after a while several delegations arrived with m unmarried princesses. Receiving guests, Karl learned that the dowry of the i th princess is wi of golden coins.

Although the action takes place in the Middle Ages, progressive ideas are widespread in society, according to which no one can force a princess to marry a prince whom she does not like. Therefore, each princess has an opportunity to choose two princes, for each of which she is ready to become a wife. The princes were less fortunate, they will obey the will of their father in the matter of choosing a bride.

Knowing the value of the dowry and the preferences of each princess, Charles wants to play weddings in such a way that the total dowry of the brides of all his sons would be as great as possible. At the same time to marry all the princes or princesses is not necessary. Each prince can marry no more than one princess, and vice versa, each princess can marry no more than one prince.

Help the king to organize the marriage of his sons in the most profitable way for the treasury.

Input

The first line contains two integers nm (2 ≤ n ≤ 200 000, 1 ≤ m ≤ 200 000) — number of princes and princesses respectively.

Each of following m lines contains three integers aibiwi (1 ≤ ai, bi ≤ nai ≠ bi, 1 ≤ wi ≤ 10 000) — number of princes, which i-th princess is ready to marry and the value of her dowry.

Output

Print the only integer — the maximum number of gold coins that a king can get by playing the right weddings.

Examples

Input

2 3
1 2 5
1 2 1
2 1 10

Output

15

Input

3 2
1 2 10
3 2 20

Output

30

题目链接:http://codeforces.com/problemset/problem/875/F

题目大意:n个王子,m个公主,每个公主有两个心仪的王子a ,b,还有嫁妆w,现在国王想要通过卖子求荣获得最多的嫁妆,问最多可获得多少嫁妆。每个王子只能娶一位公主,每个公主也只能嫁一个王子,不要求所有王子公主都能匹配到。

代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
using namespace std;
#define ll long long
const int N=200005;
int n,m,fa[N],vis[N];
struct node
{
    int a,b,w;
}e[N];
bool cmp(node x,node y)
{
    return x.w>y.w;
}
int find(int x)
{
    if(fa[x]==x)return x;
    return fa[x]=find(fa[x]);
}
int main()
{
    scanf("%d%d",&n,&m);
    for(int i=1;i<=m;i++)
        scanf("%d%d%d",&e[i].a,&e[i].b,&e[i].w);
    sort(e+1,e+1+m,cmp);
    for(int i=1;i<=n;i++) fa[i]=i;
    int ans=0;
    for(int i=1;i<=m;i++)
    {
        int a=find(e[i].a),b=find(e[i].b);
        if(a!=b&&(!vis[a]||!vis[b]))
            vis[b]|=vis[a],fa[a]=b,ans+=e[i].w;
        else if(a==b&&!vis[a]) vis[a]=1,ans+=e[i].w;
    }
    printf("%d\n",ans);
    return 0;
}

 

上一篇:DPDK基础


下一篇:【代码笔记】iOS-点击出现选择框