#include #include #include using namespace std; const int maxn=100010; int fa[maxn],size[maxn]; int getf(int x){ if(fa[x]!=x) return fa[x]=getf(fa[x]); return x; } void work(){ int n; scanf("%d",&n); for(int i=1; i<=n; ++i) fa[i]=i,size[i]=1; int u,v,w; for(int i=1; i