JSOI2008星球大战[并查集]

Posted lxyyyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSOI2008星球大战[并查集]相关的知识,希望对你有一定的参考价值。

[JSOI2008]星球大战

决定再做一道并查集水题....

正难则反 现将要攻击的星球都读入 然后记录已损坏 再将能连的都连上

然后倒着做 就是套路了QAQ 第一次交的代码死于没有认真读题...编号是从0开始

#include<bits/stdc++.h>
using namespace std;
const int N=4e5+5,M=2e5+5,inf=0x3f3f3f3f,P=19650827;
int n,m,k,cnt=0,ans[N],a[N];
bool broken[N];
template <class t>void rd(t &x)
    x=0;int w=0;char ch=0;
    while(!isdigit(ch)) w|=ch=='-',ch=getchar();
    while(isdigit(ch)) x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
    x=w?-x:x;


int head[N],tot=0;
struct edgeint v,nxt;e[M<<1];
void add(int u,int v)
    e[++tot]=(edge)v,head[u],head[u]=tot;


int f[N];
int find(int x)return f[x]==x?x:f[x]=find(f[x]);
void build(int x,int y)
    if(broken[y]) return;
    if(find(x)!=find(y)) --cnt,f[f[x]]=f[y];

int main()
    freopen("in2.txt","r",stdin);
    //freopen("xor.out","w",stdout);
    rd(n),rd(m);
    for(int i=1,u,v;i<=m;++i) rd(u),rd(v),add(u,v),add(v,u);
    rd(k);
    for(int i=k;i;--i) rd(a[i]),broken[a[i]]=1;
    for(int i=0;i<n;++i) f[i]=i;
    for(int i=0;i<n;++i)
    if(!broken[i])
        ++cnt;
        for(int j=head[i];j;j=e[j].nxt) build(i,e[j].v);
    
    ans[1]=cnt;
    for(int t=1,x;t<=k;++t)
        x=a[t],broken[x]=0,++cnt;
        for(int i=head[x];i;i=e[i].nxt) build(x,e[i].v);
        ans[t+1]=cnt;
    
    for(int i=k+1;i;--i) printf("%d\n",ans[i]);
    return 0;

以上是关于JSOI2008星球大战[并查集]的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ-1015: [JSOI2008]星球大战starwar (并查集)

BZOJ_1015_[JSOI2008]星球大战_并查集

[并查集] JSOI2008 星球大战

BZOJ 1015 [JSOI2008]星球大战starwar(逆序并查集)

bzoj 1015: [JSOI2008]星球大战starwar并查集

bzoj 1015[JSOI2008]星球大战starwar - 并查集