Codves 2822 爱在心中

题面在这自己拿  ↓ 

http://codevs.cn/problem/2822/

找强连通分量,就是找环,用trajian算法dfs记录一下时间戳和能找到的最早的祖先,如果最早的祖先等于当前的时间戳既找到一个环,利用栈维护一下,再开两个数组记录它是在第几个环中并且这个环多大。感谢红太阳lc的help。

#include <iostream>
#include <cstdio>
#include <stack>
using namespace std;
const int maxx=100000;
struct lc 
{
	int f,t;
}es[maxx];
lc bb[maxx];
int tot=0,first[maxx],next[maxx];
void build(int f,int t)
{
	es[++tot]=(lc){f,t};
	next[tot]=first[f];
	first[f]=tot;
}
stack<int> s;
int low[maxx],tim[maxx];
int bh[maxx],siz[maxx];
int tim_clock=0,cnt=0;
void dfs(int x)
{
	tim[x]=low[x]=++tim_clock;
	s.push(x);
	for(int i=first[x];i!=0;i=next[i])
	{
		int v=es[i].t;
		if(tim[v]==0)
		{
			dfs(v);
			low[x]=min(low[x],low[v]);
		}
		if(bh[v]==0)
			low[x]=min(low[x],tim[v]);
	}
	if(low[x]==tim[x])
	{
		cnt++;
		while (1)
		{
			int xx=s.top();
			s.pop();
			siz[cnt]++;
			bh[xx]=cnt;
			if(xx==x)
			break;
		}
	}
}
int cd[maxx];
int main()
{
	int n,m;
	scanf("%d%d",&n,&m);
	for(int i=1;i<=m;i++)
	{
		scanf("%d%d",&bb[i].f,&bb[i].t);
		build(bb[i].f,bb[i].t);
	}
	for(int i=1;i<=n;i++)
		if(tim[i]==0) dfs(i);
	for(int i=1;i<=m;i++)
	{
		int x=bh[bb[i].f],y=bh[bb[i].t];
		if(x!=y) cd[x]++;
	}
	int ans=0,p=0,T=0;
	for(int i=1;i<=cnt;i++)
	{
		if(siz[i]>1)
		{
			T++;
			if(cd[i]==0)
			{
				ans=i;
				p++;
			}
		}
	}
	printf("%d\n",T);
	if(p==1)
	{
		for(int i=1;i<=n;i++)
		if(bh[i]==ans) 
		cout<<i<<" "; 
	}
	else 
	puts("-1");
	return 0;
} 

 

转载于:https://my.oschina.net/u/3009052/blog/780683

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值