程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> BZOJ 1015 JSOI2008 星球大戰 starwar 並查集

BZOJ 1015 JSOI2008 星球大戰 starwar 並查集

編輯:C++入門知識

BZOJ 1015 JSOI2008 星球大戰 starwar 並查集


題目大意:給定一個無向圖,求聯通塊個數,以及k次每次摧毀一個點後的;聯通塊個數

將邊和摧毀的點全記錄下來,反著做即可。

注意被摧毀的點不能算作聯通塊

#include
#include
#include
#include
#define M 400400
using namespace std;
struct abcd{
	int to,next;
}table[M];
int head[M],tot;
int n,m,q;
int fa[M],stack[M],destroy[M],top,now;
bool destroyed[M];
int Find(int x)
{
	if(!fa[x]||fa[x]==x)
		return fa[x]=x;
	return fa[x]=Find(fa[x]);
}
inline void Unite(int x,int y)
{
	int fx=Find(x);
	int fy=Find(y);
	if(fx==fy)
		return ;
	--now;
	fa[fy]=fx;
}
inline void Add(int x,int y)
{
	table[++tot].to=y;
	table[tot].next=head[x];
	head[x]=tot;
}
int main()
{
	int i,j,x,y;
	cin>>n>>m;
	for(i=1;i<=m;i++)
	{
		scanf("%d%d",&x,&y);
		++x;++y;
		Add(x,y);
		Add(y,x);
	}
	cin>>q;
	for(i=1;i<=q;i++)
	{
		scanf("%d",&destroy[i]);
		++destroy[i];
		destroyed[destroy[i]]=1;
	}
	now=n-q;
	for(j=1;j<=n;j++)
		if(!destroyed[j])
			for(i=head[j];i;i=table[i].next)
				if(!destroyed[table[i].to])
					Unite(j,table[i].to);
	stack[++top]=now;
	for(j=q;j;j--)
	{
		x=destroy[j];
		destroyed[x]=0;
		++now;
		for(i=head[x];i;i=table[i].next)
			if(!destroyed[table[i].to])
				Unite(x,table[i].to);
		stack[++top]=now;
	}
	while(top)
		printf("%d\n",stack[top--]);
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved