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

Tarjan模板

时间:2019-02-19 13:38:51      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:long   can   namespace   pac   oid   ace   str   for   struct   

#include<cstdio>
#include<stack>
#include<cstring>
#include<algorithm>
const int N=5001;
const int M=500001;
struct edge{
    int to,next;
}edge[M];
int DFN[N],LOW[N],belong[N],head[N],cnt[N];
bool f[N];
int n,m,i,k,x,y,t,ecnt,scnt,cntt,maxn;
using namespace std;
stack<int>mystack;
void add(int x,int y){
    edge[ecnt].next=head[x];
    edge[ecnt].to=y;
    head[x]=ecnt++;
}
void tarjan(int u){
    int i,v;
    DFN[u]=LOW[u]=++scnt;
    f[u]=1;
    mystack.push(u);
    for (i=head[u];i!=-1;i=edge[i].next){
        v=edge[i].to;
        if (!DFN[v]){
            tarjan(v);
            LOW[u]=min(LOW[u],LOW[v]);
        }
        else if (f[v]) LOW[u]=min(LOW[u],DFN[v]);
    }
    if (DFN[u]==LOW[u]){
        cntt++;
        do{  
            i=mystack.top(); 
            mystack.pop(); 
            f[i]=0;  
            belong[i]=cntt; 
            cnt[cntt]++;
        }  
        while (i!=u);  
    }
}
int main(){
    scanf("%d%d",&n,&m);
    memset(head,-1,sizeof(head));
    for (i=1;i<=m;i++){
        scanf("%d%d",&x,&y);
        add(x,y);
    }
    for (i=1;i<=n;i++)
        if (!DFN[i]) tarjan(i);
    for (i=1;i<=n;i++)
        printf("%d ",belong[i]);
    return 0;
}

Tarjan模板

标签:long   can   namespace   pac   oid   ace   str   for   struct   

原文地址:https://www.cnblogs.com/Weakest-konJac/p/10400235.html

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