题面在这自己拿 ↓
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;
}