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

【学习整理】Tarjan:强连通分量+割点+割边

时间:2016-11-11 00:01:04      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:.com   std   scan   强连通分量   img   否则   ++   using   割边   

Tarjan求强连通分量

在一个有向图中,如果某两点间都有互相到达的路径,那么称中两个点强联通,如果任意两点都强联通,那么称这个图为强联通图;一个有向图的极大强联通子图称为强联通分量

技术分享  算法可以在 技术分享的时间内求出一个图的所有强联通分量。

技术分享 表示进入结点 技术分享 的时间

技术分享 表示从 技术分享 所能追溯到的栈中点的最早时间

如果某个点 技术分享 已经在栈中则更新  技术分享

否则对 技术分享 进行回溯,并在回溯后更新  技术分享

 

#include<iostream>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<stack>
using namespace std;

int n,m,tot,ind,ans;
int dfn[200005],low[200005],last[200005];
bool ins[200005];
stack<int> s;
struct hh
{
    int fr,to,next;
}e[500005];
void add(int fr,int to)
{
    e[++tot].to=to;e[tot].fr=fr;
    e[tot].next=last[fr];
    last[fr]=tot;
}
void tarjan(int now)
{
    int i,j;
    s.push(now);
    ins[now]=true;
    low[now]=dfn[now]=++dex;
    for(i=last[now];i;i=e[i].next)
        if(!dfn[e[i].to])
        {
            tarjan(e[i].to);
            low[now]=min(low[now],low[e[i].to]);
        }
        else if(ins[e[i].to])low[now]=min(low[now],dfn[e[i].to]);
                
    if(dfn[now]==low[now])
    {
        cnt=0;
        do
        {
            j=s.top();s.pop();
            ins[j]=false;
            cnt++;
        }while(j!=now);
        ans=max(ans,cnt);
    }
}
int main()
{
    int i,j,u,v;
    scanf("%d%d",&n,&m);
    for(i=1;i<=m;i++)
    {
        scanf("%d%d",&u,&v);
        add(u,v);
    }
    for(i=1;i<=n;i++)
        if(!dfn[i]) tarjan(i);
    printf("%d",ans);
    return 0;
}

 

 

Tarjan求割点

在一个无向图中,如果删掉点 技术分享 后图的连通块数量增加,则称点 技术分享 为图的割点

对于搜索树上的非根结点 技术分享 ,如果存在子节点 技术分享 满足 技术分享  ,即 技术分享 向上无法达到 技术分享 的祖先,则 技术分享 为割点。

对于搜索树上的根节点技术分享,若它的子节点数 技术分享 ,则 技术分享 为割点。

 

void tarjan(int x,int fa)
{
    int i,j;
    dfn[x]=low[x]=++dex;
    for(i=last[x];i;i=e[i].next)
    {
        ++t[x];
        if(!dfn[e[i].to])
        {
            tarjan(e[i].to,x);
            low[x]=min(low[x],low[e[i].to]);
            if(x==root&&t[x]>=2) opt[x]=true;
            else if(x!=root&&low[e[i].to]>=dfn[x]) opt[x]=true;
        }
        else if(e[i].to!=fa) low[x]=min(low[x],dfn[e[i].to]);
    }
}

 

 

Tarjan求割边

对于当前结点 技术分享,若邻接点中存在结点 技术分享 满足 技术分享 ,则 技术分享 为割边。

 

void tarjan(int x,int fa)
{
    int i,j;
    low[x]=dfn[x]=++dex;
    for(i=last[x];i;i=e[i].next)
        if(e[i].to!=fa)
        {
            if(dfn[e[i].to]) low[x]=min(low[x],dfn[e[i].to]);
            else
            {
                tarjan(e[i].to,x);
                low[x]=min(low[x],low[e[i].to]);
                if(low[e[i].to]>dfn[x]) opt[e[i].id]=true;
            }
        }
}

【学习整理】Tarjan:强连通分量+割点+割边

标签:.com   std   scan   强连通分量   img   否则   ++   using   割边   

原文地址:http://www.cnblogs.com/yljiang/p/6052596.html

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