编程之美区间覆盖


昨天晚上快睡觉之前看了个 并查集。

下把基本的代码上上

并查集找公共祖先,并查集压缩路径,并查集连接

#define MAX 100

int pre[MAX];

int find(int x)
{
	int y;
	int root;
	int temp;
	y=x;
	while(pre[x]!=x)
	{
		x=pre[x];	
	}
	root = x;
	while(pre[y]!=y)
	{
		temp=pre[y];
		pre[y]=root;
		y=temp;
	}
	return root;
}
void join(int x,int y)
{
	int root_x = find(x);
	int root_y = find(y);
	
	if(root_x != root_y)
	{
		pre[root_x]=root_y;
	}

}

好了现在开始应对具体问题解决

#define MAX 100

int pre[MAX];
void init_set()
{
	int i=0;
	for(i=0;i<MAX;i++)
		pre[i]=i;
}
int find(int x)
{
	int y;
	int root;
	int temp;
	y=x;
	while(pre[x]!=x)
	{
		x=pre[x];	
	}
	root = x;
	while(pre[y]!=y)
	{
		temp=pre[y];
		pre[y]=root;
		y=temp;
	}
	return root;
}
void join(int x,int y)
{
	int root_x = find(x);
	int root_y = find(y);
	
	if(root_x != root_y)
	{
		pre[root_x]=root_y;
	}

}

int main()
{
	int x,y;
	int n;
	int i=0;
	int base_x,base_y;
	int father_x,father_y;
	while(1)
	{
		scanf("%d%d",&x,&y);
		scanf("%d",&n);
		init_set();
		while(n--)
		{
			scanf("%d%d",&base_x,&base_y);
			if(base_x > base_y)
			{
				base_x = base_x^base_y;
				base_y=base_x^base_x;
				base_x=base_x^base_y;
			}
			for(i=base_x+1;i<=base_y;i++)
			{
				join(base_x,i);
			}
		}
		father_x = find(x);
		father_y = find(y);
		if(father_x == father_y)
			printf("Yes\n");
		else
			printf("No\n");
	}

}

并查集 好方法


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值