HDOJ 题目3836 Equivalent Sets(强连通分量)

本文探讨了通过证明集合间的子集关系来确定多个集合等价性的算法问题。介绍了如何利用已知的子集关系并通过添加最少的额外关系使所有集合成为强连通分量的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Equivalent Sets

Time Limit: 12000/4000 MS (Java/Others)    Memory Limit: 104857/104857 K (Java/Others)
Total Submission(s): 3070    Accepted Submission(s): 1079


Problem Description
To prove two sets A and B are equivalent, we can first prove A is a subset of B, and then prove B is a subset of A, so finally we got that these two sets are equivalent.
You are to prove N sets are equivalent, using the method above: in each step you can prove a set X is a subset of another set Y, and there are also some sets that are already proven to be subsets of some other sets.
Now you want to know the minimum steps needed to get the problem proved.
 

Input
The input file contains multiple test cases, in each case, the first line contains two integers N <= 20000 and M <= 50000.
Next M lines, each line contains two integers X, Y, means set X in a subset of set Y.
 

Output
For each case, output a single integer: the minimum steps needed.
 

Sample Input
  
4 0 3 2 1 2 1 3
 

Sample Output
  
4 2
Hint
Case 2: First prove set 2 is a subset of set 1 and then prove set 3 is a subset of set 1.
 

Source
 

Recommend
xubiao   |   We have carefully selected several similar problems for you:   3835  3828  3834  3830  3833 
 题目大意:问加几个边,让他成为一个强连通分量
ac代码
#include<stdio.h>
#include<string.h>
#include<queue>
#include<string>
#include<iostream>
#define max(a,b) (a>b?a:b)
#define min(a,b) (a<b?a:b)
using namespace std;
int inde[50020],outde[50020];
int dfn[50020],low[50020],ins[50020],belong[50020],stack[50020],cnt,head[50050],top,taj,time;
struct s
{
	int u,v,next;
}edge[50050];
void add(int u,int v)
{
	edge[cnt].u=u;
	edge[cnt].v=v;
	edge[cnt].next=head[u];
	head[u]=cnt++;
}
void init()
{
	cnt=0;
	memset(head,-1,sizeof(head));
	top=taj=0;
	memset(dfn,-1,sizeof(dfn));
	memset(belong,-1,sizeof(belong));
	memset(low,-1,sizeof(low));
	memset(ins,0,sizeof(ins));
	time=0;
}
void tarjan(int u)
{
	dfn[u]=low[u]=time++;
	ins[u]=1;
	stack[top++]=u;
	for(int i=head[u];i!=-1;i=edge[i].next)
	{
		int v=edge[i].v;
		if(dfn[v]==-1)
		{
			tarjan(v);
			low[u]=min(low[u],low[v]);
		}
		else
			if(ins[v])
			{
				low[u]=min(low[u],dfn[v]);
			}
	}
	if(dfn[u]==low[u])
	{
		int now;
		taj++;
		do
		{
			now=stack[--top];
			ins[now]=0;
			belong[now]=taj;
		}while(now!=u);
	}
}
int n,m;
int main()
{
	while(scanf("%d%d",&n,&m)!=EOF)
	{
		int i;
		init();
		for(i=0;i<m;i++)
		{
			int a,b;
			scanf("%d%d",&a,&b);
			add(a,b);
		}
		for(i=1;i<=n;i++)
			if(dfn[i]==-1)
				tarjan(i);
		if(n<1||taj==1)
		{
			printf("0\n");
			continue;
		}
		int ans1,ans2;
		ans1=ans2=0;
		memset(inde,0,sizeof(inde));
		memset(outde,0,sizeof(outde));
		for(i=0;i<cnt;i++)
		{
			int u=edge[i].u;
			int v=edge[i].v;
			if(belong[u]!=belong[v])
			{
				inde[belong[v]]++;
				outde[belong[u]]++;
			}
		}
		for(i=1;i<=taj;i++)
		{
			if(inde[i]==0)
				ans1++;
			if(outde[i]==0)
				ans2++;
		}
		printf("%d\n",max(ans1,ans2));
	}
}


资源下载链接为: https://pan.quark.cn/s/22ca96b7bd39 在当今的软件开发领域,自动化构建与发布是提升开发效率和项目质量的关键环节。Jenkins Pipeline作为一种强大的自动化工具,能够有效助力Java项目的快速构建、测试及部署。本文将详细介绍如何利用Jenkins Pipeline实现Java项目的自动化构建与发布。 Jenkins Pipeline简介 Jenkins Pipeline是运行在Jenkins上的一套工作流框架,它将原本分散在单个或多个节点上独立运行的任务串联起来,实现复杂流程的编排与可视化。它是Jenkins 2.X的核心特性之一,推动了Jenkins从持续集成(CI)向持续交付(CD)及DevOps的转变。 创建Pipeline项目 要使用Jenkins Pipeline自动化构建发布Java项目,首先需要创建Pipeline项目。具体步骤如下: 登录Jenkins,点击“新建项”,选择“Pipeline”。 输入项目名称和描述,点击“确定”。 在Pipeline脚本中定义项目字典、发版脚本和预发布脚本。 编写Pipeline脚本 Pipeline脚本是Jenkins Pipeline的核心,用于定义自动化构建和发布的流程。以下是一个简单的Pipeline脚本示例: 在上述脚本中,定义了四个阶段:Checkout、Build、Push package和Deploy/Rollback。每个阶段都可以根据实际需求进行配置和调整。 通过Jenkins Pipeline自动化构建发布Java项目,可以显著提升开发效率和项目质量。借助Pipeline,我们能够轻松实现自动化构建、测试和部署,从而提高项目的整体质量和可靠性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值