UOJ #146. NOIP2015信息传递 连通分量 tarjan模板题

Posted COLORFUL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UOJ #146. NOIP2015信息传递 连通分量 tarjan模板题相关的知识,希望对你有一定的参考价值。

http://uoj.ac/problem/146

 

题解:强连通分量 tarjan模板题。同时试了一下codeblock

#include<bits/stdc++.h>
using namespace std;
const int maxn=2e5+5;
vector<int> E[maxn];
int dfn[maxn],low[maxn],tot,n,ans=maxn,vis[maxn];
stack<int> S;
void tarjan(int x){
    low[x]=dfn[x]=++tot;
    S.push(x);vis[x]=1;
    for(int i=0;i<E[x].size();i++){
        int v=E[x][i];
        if(!dfn[v]){
            tarjan(v);
            low[x]=min(low[x],low[v]);

        }else if(vis[x]){
        low[x]=min(low[x],dfn[v]);
        }
    }
    if(low[x]==dfn[x]){
        int cnt=0;
        while(1){
            int now=S.top();
            S.pop();
            vis[x]=0;
            cnt++;
            if(now==x)break;
        }
        if(cnt>1)ans=min(ans,cnt);
    }
}
int main(){
  cin>>n;
  for(int i=1;i<=n;i++){
    int x;
    scanf("%d",&x);
    E[i].push_back(x);
  }
  for(int i=1;i<=n;i++){
    if(!dfn[i])tarjan(i);

  }
  cout<<ans<<endl;
}

 

以上是关于UOJ #146. NOIP2015信息传递 连通分量 tarjan模板题的主要内容,如果未能解决你的问题,请参考以下文章

[BZOJ4326][codevs4632][codevs5440][UOJ#150][NOIP2015]运输计划

NOIP2015信息传递

[NOIP2015] D1T2 信息传递

uoj #148. NOIP2015跳石头 二分

uoj147NOIP2015—斗地主

UOJ149 NOIP2015子串