|poj 1236|强连通分量|Network of Schools

poj 1236

tarjan

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
#include<stack>
#define ms(i, j) memset(i, j, sizeof i)
#define FN2 "poj1236" 
using namespace std;

const int MAXN = 100 + 5;

vector<int> G[MAXN];
stack<int> s;
int n, low[MAXN], dn[MAXN], tb, ex[MAXN];
int cnt, scc_out[MAXN], scc_in[MAXN], scc_belong[MAXN];

void tarjan(int u)
{
    low[u] = dn[u] = ++tb;
    s.push(u), ex[u] = -1;
    for (int i=0;i<G[u].size();i++)
    {
        int v = G[u][i];
        if (ex[v]==0)
        {
            tarjan(v);
            low[u] = min(low[u], low[v]);
        } else if (ex[v]==-1)
        {
            low[u] = min(low[u], dn[v]);
        }
    }
    if (low[u]==dn[u])
    {
        int e;
        cnt++;
        do
        {
            e = s.top(); s.pop();
            scc_belong[e] = cnt;
            ex[e] = 1;
        } while (u!=e);
    }
}
void rebuild()
{
    for (int u=1;u<=n;u++)
    {
        for (int i=0;i<G[u].size();i++)
        {
            int v = G[u][i];
            if (scc_belong[u]!=scc_belong[v])
            {
                scc_out[scc_belong[u]] = 1;
                scc_in[scc_belong[v]] = 1;
            }
        }
    }
}
void init()
{
    for (int i=1;i<=n;i++)
    {
        low[i] = dn[i] = ex[i] = scc_out[i] = scc_in[i] = scc_belong[i] = 0;
        G[i].clear();
    }
    tb = cnt = 0;
    for (int i=1;i<=n;i++)
    {
        int x;
        while (scanf("%d", &x)==1&&x)
        {
            G[i].push_back(x);
        }
    }
}
void solve()
{
    for (int i=1;i<=n;i++)
    if (!dn[i]) tarjan(i);
    rebuild();
    int ans = 0, ansin = 0, ansout = 0;
    for (int i=1;i<=cnt;i++) if (!scc_in[i]) ansin++;
    for (int i=1;i<=cnt;i++) if (!scc_out[i]) ansout++;
    ans = max(ansin, ansout);
    if (cnt==1) printf("1\n0\n"); else printf("%d\n%d\n", ansin, ans);
}
int main()
{
    #ifndef ONLINE_JUDGE
    freopen(FN2".in","r",stdin);
    freopen(FN2".out","w",stdout);
    #endif
    while (scanf("%d", &n)==1)
    {
        init();
        solve();
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值