码迷,mamicode.com
首页 > Web开发 > 详细

【洛谷】P1197 [JSOI2008]星球大战

时间:2017-12-28 23:33:23      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:print   stdin   pos   开始   大战   max   一个   jsoi2008   c++   

原题


这道题目在一开始想的时候我感觉没有什么思路,然后仔细一想,如果可以重新建边呢???
我们不妨先把所有点都设定为一个孤独的岛屿,然后不断连边,所有第一个的答案就出来了!!!
然后每一次我们可以增加一个点,然后把所有与他有关的边连接起来,就!!!AC了!

#include<bits/stdc++.h>
#define file(a) freopen(a".in","r",stdin);freopen(a".out","w",stdout);
using namespace std;
const int maxm=200010,maxn=2*maxm;
int beat[maxn],front[maxn];
int f[maxn];
int find(int x){
    if(f[x]!=x)f[x]=find(f[x]);
    return f[x];
}
int ans[maxn];
void join(int x,int y){
    x=find(x);y=find(y);
    if(x!=y)f[y]=x;
}
struct node{
    int to,next,now;
}e[maxn];
int cnt,die[maxn];
void Add(int x,int y){
    e[++cnt].to=y;
    e[cnt].next=front[x];
    front[x]=cnt;
    e[cnt].now=x;
}
int main(){
    int i,j,k,n,m;
    scanf("%d%d",&n,&m);
    for(i=1;i<=m;i++){ 
        int x,y;
        scanf("%d%d",&x,&y);
        Add(x,y);
        Add(y,x);
    } 
    scanf("%d",&k);
    for(i=1;i<=k;i++){
        scanf("%d",&beat[i]);
        die[beat[i]]=1;
    }
    for(i=0;i<=n;i++)
        f[i]=i;
    int tot=n-k;
    for(i=1;i<=2*m;i++)
        if(!die[e[i].to] && !die[e[i].now]){
            int u=e[i].now,v=e[i].to;
            if(find(u)!=find(v)){
                tot--;join(u,v);
            }
        }
    ans[k+1]=tot;
    for(i=k;i>=1;i--){
        int u=beat[i];
        tot++;
        die[u]=0;
        for(j=front[u];j;j=e[j].next){
            int v=e[j].to;
            if(!die[v] && find(u)!=find(v)){
                tot--;
                join(u,v);
            }
        }
        ans[i]=tot;
    }
    for(i=1;i<=k+1;i++)printf("%d\n",ans[i]);
    return 0;
}
/*
Input:
8 13
0 1
1 6
6 5
5 0
0 6
1 2
2 3
3 4
4 5
7 1
7 2
7 6
3 6
5
1
6
3
5
7

Output:
1
1
1
2
3
3
*/                

【洛谷】P1197 [JSOI2008]星球大战

标签:print   stdin   pos   开始   大战   max   一个   jsoi2008   c++   

原文地址:https://www.cnblogs.com/cj-gjh/p/8137938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!