mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 23:08:47 +00:00
parent
29e50be31a
commit
a9ea25dbd1
41
Hydro/H1004/H1004.cpp
Normal file
41
Hydro/H1004/H1004.cpp
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int n, m, fa[100005], cnt;
|
||||||
|
long long res;
|
||||||
|
|
||||||
|
struct node {
|
||||||
|
int u, v;
|
||||||
|
long long w;
|
||||||
|
|
||||||
|
bool operator<(const node x) const {
|
||||||
|
return w < x.w;
|
||||||
|
}
|
||||||
|
} g[200005];
|
||||||
|
|
||||||
|
int find(int x) {
|
||||||
|
return fa[x] = fa[x] != x ? find(fa[x]) : fa[x];
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
cin >> n >> m;
|
||||||
|
for (int i = 0; i < m; i++) {
|
||||||
|
cin >> g[i].u >> g[i].v >> g[i].w;
|
||||||
|
}
|
||||||
|
sort(g, g + m);
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
fa[i] = i;
|
||||||
|
}
|
||||||
|
for (int i = 0; i < m; i++) {
|
||||||
|
g[i].u = find(g[i].u);
|
||||||
|
g[i].v = find(g[i].v);
|
||||||
|
if (g[i].u != g[i].v) {
|
||||||
|
fa[g[i].u] = g[i].v;
|
||||||
|
res += g[i].w;
|
||||||
|
cnt++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cout << res << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user