显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
inline int getint(){
static int __c,__x;
static bool __neg;
__x=0;
__neg=false;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
if(__c=='-'){
__neg=true;
__c=getchar();
}
for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
if(__neg)return -__x;
return __x;
}
inline long long getll(){
static long long __x;
static char __c;
static bool __neg;
__x=0;
__neg=false;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
if(__c=='-'){
__neg=true;
__c=getchar();
}
for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
if(__neg)return -__x;
return __x;
}
inline unsigned long long getull(){
static unsigned long long __x;
static char __c;
__x=0;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
return __x;
}
inline void putint(int __x){
static int __a[40],__i,__j;
static bool __neg;
__neg=__x<0;
if(__neg)__x=-__x;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
if(__neg)putchar('-');
for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
}
inline void putll(long long __x){
static int __a[40],__i,__j;
static bool __neg;
__neg=__x<0;
if(__neg)__x=-__x;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
if(__neg)putchar('-');
for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
}
inline void putull(unsigned long long __x){
static int __a[40],__i,__j;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
}
}
using namespace mine;
const int maxn=110;
int findroot(int);
void merge(int,int);
int T,n,m,ans,x,y,prt[maxn];
inline int MAIN(){
#define MINE
#ifdef MINE
freopen("HWnetbar.in","r",stdin);
freopen("HWnetbar.out","w",stdout);
#endif
T=getint();
while(T--){
n=getint();
m=getint();
for(int i=1;i<=n;i++)prt[i]=i;
while(m--){
x=getint();
y=getint();
merge(x,y);
}
ans=0;
for(int i=1;i<=n;i++)ans+=(prt[i]==i);
putint(ans-1);
putchar('\n');
}
return 0;
}
inline int findroot(int x){
return (prt[x]^x)?(prt[x]=findroot(prt[x])):x;
}
inline void merge(int x,int y){
static int rx,ry;
rx=findroot(x);
ry=findroot(y);
if(rx^ry)prt[rx]=ry;
}
int hzoier=MAIN();
int main(){;}