码迷,mamicode.com
首页 > 其他好文 > 详细

nyoj_1022:合纵连横(并查集删点)

时间:2017-02-13 13:55:14      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:color   ref   move   lin   class   oid   remove   net   --   

http://acm.nyist.net/JudgeOnline/problem.php?pid=1022

只附代码好了

#include<bits/stdc++.h>
using namespace std;

const int N=200005;
int a[N],b[N],vis[N];
int n,m,add,kase;

void init()
{
    for(int i=0;i<n;i++)
        a[i]=i,b[i]=i;
    add=n;
    memset(vis,0,sizeof(vis));
}
int Find(int x)
{
    return x==a[x]? x:a[x]=Find(a[x]);
}
void Unite(int x,int y)    //入口由b[N]控制 
{
    x=Find(x),y=Find(y);
    a[x]=y;
}
void Remove(int x)
{
    a[add]=add,b[x]=add;
    add++;
    //金蝉脱壳 
}
int main()
{
    while(cin>>n>>m)
    {
        init();
        while(m--)
        {
            char op;int x,y;
            cin>>op;
            if(op==U)
            {
                cin>>x>>y;
                Unite(b[x],b[y]);
            }
            else
            {
                cin>>x;
                Remove(x);
            }
        }
        int ans=0;
        for(int i=0;i<n;i++)
        {
            if(!vis[Find(b[i])])
                ans++,vis[Find(i)]=1;
        }
        printf("Case #%d: %d\n",++kase,ans);
    }
}

 

nyoj_1022:合纵连横(并查集删点)

标签:color   ref   move   lin   class   oid   remove   net   --   

原文地址:http://www.cnblogs.com/Just--Do--It/p/6393289.html

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