Educational Codeforces Round 33 (Rated for Div. 2) C. Rumor【并查集+贪心/维护集合最小值】

C. Rumor
time limit per test
 2 seconds
memory limit per test
 256 megabytes
input
 standard input
output
 standard output

Vova promised himself that he would never play computer games... But recently Firestorm — a well-known game developing company — published their newest game, World of Farcraft, and it became really popular. Of course, Vova started playing it.

Now he tries to solve a quest. The task is to come to a settlement named Overcity and spread a rumor in it.

Vova knows that there are n characters in Overcity. Some characters are friends to each other, and they share information they got. Also Vova knows that he can bribe each character so he or she starts spreading the rumor; i-th character wants ci gold in exchange for spreading the rumor. When a character hears the rumor, he tells it to all his friends, and they start spreading the rumor to their friends (for free), and so on.

The quest is finished when all n characters know the rumor. What is the minimum amount of gold Vova needs to spend in order to finish the quest?

Take a look at the notes if you think you haven't understood the problem completely.

Input

The first line contains two integer numbers n and m (1 ≤ n ≤ 105, 0 ≤ m ≤ 105) — the number of characters in Overcity and the number of pairs of friends.

The second line contains n integer numbers ci (0 ≤ ci ≤ 109) — the amount of gold i-th character asks to start spreading the rumor.

Then m lines follow, each containing a pair of numbers (xi, yi) which represent that characters xi and yi are friends (1 ≤ xi, yi ≤ nxi ≠ yi). It is guaranteed that each pair is listed at most once.

Output

Print one number — the minimum amount of gold Vova has to spend in order to finish the quest.

Examples
input
5 2
2 5 3 4 8
1 4
4 5
output
10
input
10 0
1 2 3 4 5 6 7 8 9 10
output
55
input
10 5
1 6 2 7 3 8 4 9 5 10
1 2
3 4
5 6
7 8
9 10
output
15
Note

In the first example the best decision is to bribe the first character (he will spread the rumor to fourth character, and the fourth one will spread it to fifth). Also Vova has to bribe the second and the third characters, so they know the rumor.

In the second example Vova has to bribe everyone.

In the third example the optimal decision is to bribe the first, the third, the fifth, the seventh and the ninth characters.

【题意】:有n个人,其中有m对朋友,现在你有一个秘密想告诉所有人,第i个人愿意出价a[i]买你的秘密,获得秘密的人会免费告诉他所有的朋友(他朋友的朋友的···也会免费知道),现在他们想出最少的价钱买秘密,那么你最少能得到多少钱?

【分析】:最后会形成多个集合,每个集合里面的人能够可以互相到达。维护并查集的时候,顺便维护一下每个集合里面的最小值。最后答案就为∑min{每个集合}。

【题解】:

#include <bits/stdc++.h>

using namespace std;
typedef  long long ll;
const int N = 100005;
ll n,m;
ll x,y;
ll a[N],fa[N];
void init()
{
    for(ll i=1;i<=n;i++)
        fa[i]=i;
}
ll Find(ll x)
{
    return fa[x]==x?x:x=Find(fa[x]);
}

void Join(ll x,ll y)
{
    ll fx = Find(x);
    ll fy = Find(y);
    if(fx!=fy){
        fa[fx]=fy;
        a[fy]=min(a[fx],a[fy]); //维护一下每个集合里面的最小值
    }
/* or
for(int i = 1; i <= n; ++i){  
        a[fa(i)] = min(a[fa(i)], a[i]);  
    }  
*/
}
int main()
{
    ll sum=0;//ll防炸 or wa7
    scanf("%lld %lld",&n,&m);
    init();
    for(ll i=1;i<=n;i++) scanf("%lld",&a[i]);

    for(ll i=1;i<=m;i++) {
        scanf("%lld%lld",&x,&y);
        Join(x,y);
    }
    for(ll i=1;i<=n;i++){
        if( fa[i]==i )
            sum+=a[i];
    }
    printf("%lld
",sum);
    return 0;
}
并查集
原文地址:https://www.cnblogs.com/Roni-i/p/7890812.html