#include <bits/stdc++.h> #define int long long #define PII pair<int,int> #define ll long long #define endl '\n' using namespace std; const int N=2e5+10,M=5010; int p[N]; struct Node{ int x,y,t; bool operator < (const Node &tmp )const { return t<tmp.t; } }node[N]; int find(int x) { if(x!=p[x]) { p[x]=find(p[x]); } return p[x]; } signed main() { cin.tie(0);cout.tie(0); ios::sync_with_stdio(0); int n,m;cin>>n>>m; for(int i=1;i<=m;i++) { cin>>node[i].x>>node[i].y>>node[i].t; } sort(node+1, node+m+1); auto check=[&](int mid) { for(int i=1;i<=n;i++)p[i]=i; for(int i=1;i<=mid;i++) { int a=node[i].x;int b=node[i].y; int pa=find(a);int pb=find(b); if(pa!=pb) { p[pa]=pb; } } int pa=find(1); for(int i=1;i<=n;i++) { int pb=find(i); if(pa!=pb) { return false; } } return true; }; int l=1,r=m; while(l<r) { int mid=l+r>>1; if(check(mid))r=mid; else l=mid+1; } cout<<n-1<<' '<<node[l].t; return 0; }
P2330 [SCOI2005] 繁忙的都市
最新推荐文章于 2025-04-03 15:22:55 发布