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

洛谷P1525关押罪犯——并查集

时间:2018-02-11 00:12:52      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:答案   new   lan   www   ace   sha   pac   show   贪心   

题目:https://www.luogu.org/problemnew/show/P1525

并查集+贪心,从大到小排序,将二人分在不同房间,找到第一个不满足的即为答案。

代码如下:

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int n,m,fa[20005],ans,ct,d[20005];
struct N{
	int hd,to,w;
}edge[100005];
bool cmp(N x,N y)
{
	return x.w>y.w;
}
int find(int x)
{
	if(fa[x]==x)return x;
	else
	{
		int root=find(fa[x]);
		d[x]+=d[fa[x]];
		fa[x]=root;
	} 
	return fa[x];
}
int main()
{
	scanf("%d%d",&n,&m);
	int a,b,c;
	for(int i=1;i<=m;i++)
	{
		ct++;
		scanf("%d%d%d",&edge[ct].hd,&edge[ct].to,&edge[ct].w);
	}
	sort(edge+1,edge+m+1,cmp);
	for(int i=1;i<=n;i++)fa[i]=i;
	for(int i=1;i<=m;i++)
	{
		int u=find(edge[i].hd);
		int v=find(edge[i].to);
		if(u==v&&(d[edge[i].to]-d[edge[i].hd])%2==0)//在同间 
		{
			ans=edge[i].w;
			break;
		}
		if(u!=v)
		{
			fa[u]=v;
			d[u]=d[edge[i].to]-d[edge[i].hd]+1;//dhd+du=dto+1;
		}
	}
	printf("%d",ans);
	return 0;
}

  

洛谷P1525关押罪犯——并查集

标签:答案   new   lan   www   ace   sha   pac   show   贪心   

原文地址:https://www.cnblogs.com/Zinn/p/8439980.html

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