Miracle_InDream @ 2024-08-09 10:11:54
#include<bits/stdc++.h>
using namespace std;
int f[400005];
int n,m;
int ans=0;
int find(int x)
{
if(x==f[x])
{
return x;
}
return f[x]=find(f[x]);
}
void hb(int x,int y)
{
int xx=find(x);
int yy=find(y);
if(xx!=yy)
{
f[xx]=yy;
}
}
int main()
{
cin>>n>>m;
for(int i=1;i<=n;i++)
{
f[i]=i;
}
for(int i=1;i<=m;i++)
{
int x,y;
cin>>x>>y;
hb(x,y);
}
int k;
cin>>k;
for(int i=1;i<=k;i++)
{
int ans=0;
int x;
cin>>x;
f[x+1]=x+1;
for(int j=1;j<=n;j++)
{
if(f[j]==j)
{
ans++;
}
}
cout<<ans<<endl;
}
return 0;
}
by SW_YM @ 2024-08-14 12:52:57
逆天,建议学习可撤销并查集
显然,对于3个节点三条边来说,撤去其中一条边此图仍只有一个连通块,而你上去就写了个fa[x]=x;
扯出来了这个点,好炸裂的写法,你猜猜这题为什么是普及+/提高难度?