题目描述
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 ≤ n, xi ≠ 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
Copy
5 2 2 5 3 4 8 1 4 4 5
output
Copy
10
input
Copy
10 0 1 2 3 4 5 6 7 8 9 10
output
Copy
55
input
Copy
10 5 1 6 2 7 3 8 4 9 5 10 1 2 3 4 5 6 7 8 9 10
output
Copy
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.
思路
- 从每个点开始dfs, dfs过程中更新连通块内点的最小花费
- ans会爆int
代码
#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
#define _for(i,a,b) for(int i=(a);i<(b);i++)
#define _rep(i,a,b) for(int i=(a);i<=(b);i++)
typedef pair<int, int> PLL;
typedef long long ll;
const int N = 1e5+5;
const int INF = 0x3f3f3f3f;
int readint(){
int x;scanf("%d",&x);return x;
}
int n, m, c[N];
bool vis[N];
vector<int> edge[N];
int sum;
void dfs(int x) {
vis[x] = true;
sum = min(sum, c[x]);
for(auto y : edge[x]) {
if(!vis[y]) {
dfs(y);
}
}
}
int main()
{
n = readint(), m = readint();
_rep(i, 1, n) c[i] = readint();
_rep(i, 1, m) {
int x = readint(), y = readint();
edge[x].push_back(y);
edge[y].push_back(x);
}
ll ans = 0;
_rep(i, 1, n) {
sum = INF;
if(!vis[i]) {
dfs(i);
ans += sum;
}
}
printf("%lld\n", ans);
return 0;
}
本文介绍了一名玩家Vova如何在《世界远征》游戏中通过最少金币策略来完成在Overcity散布谣言的任务。涉及朋友关系网络、人物需求贿赂金额和最小花费路径求解。

450

被折叠的 条评论
为什么被折叠?



