CCF 地铁修建
最小生成树 + 并查集
#include <bits/stdc++.h>
using namespace std;
const int N = 1e+5+10;
int n,m;
struct Edge{
int x;
int y;
int l;
};
int a[N];
vector<Edge>v;
bool cmp(const Edge &a,const Edge &b){
return a.l < b.l;
}
int find_f(int x){
if(a[x] == x) return x;
return a[x] = find_f(a[x]);
}
int main(){
//freopen("1.txt","r",stdin);
cin >> n >> m;
for(int i = 0; i < n; i++) a[i] = i;
Edge temp;
while(m--){
cin >> temp.x >> temp.y >> temp.l;
v.push_back(temp);
}
sort(v.begin(),v.end(),cmp);
int cnt = 0;
for(int i = 0; i < v.size(); i++){
int f1 = find_f(v[i].x);
int f2 = find_f(v[i].y);
if(f1 != f2){
cnt++;
a[f1] = f2;
}
if(find_f(a[1]) == find_f(a[n])){
cout << v[i].l;
return 0;
}
}
}