#include using namespace std; using ll = long long; #define FOR(x,to) for(x=0;x>N; int i,j; FOR(i,N){ cin>>X[i]>>Y[i]; } FOR(i,N) FOR(j,N) if(dist(i, j) <= 100) uf.unite(i,j); double ma=1; if(N)ma=2; FOR(i,N) FOR(j,N) if(uf[i]==uf[j]){ ma=max(ma,2+sqrt(dist(i,j))); } cout<>t; for(;t--;) solve(); }