NOIp2015 信息传递

为获得更好的阅读体验请访问我的 Blog

Luogu

题目就是要求一个图中的最小环。

因为每个点的出度一定等于 1 ,所以每个大小不为 1 的强连通分量必定是一个环。

那么,那些大小不为 1 的强连通分量中大小最小的值就是答案了。

这里使用 Tarjan 算法来求强连通分量。

#include <iostream>
#include <cstdio>

const int Inf = 0x3f3f3f3f;
const int MaxN = 2e5 + 5;

int N, Index, Ans = Inf, Tail;
int Dfn[MaxN], Low[MaxN], Vis[MaxN], Stack[MaxN], To[MaxN];

inline int read()
{
    register int x = 0;
    register char ch = getchar();
    while(!isdigit(ch)) ch = getchar();
    while(isdigit(ch))
    {
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x;
}

void Tarjan(int x)
{
    Dfn[x] = Low[x] = ++Index;
    Stack[++Tail] = x;
    Vis[x] = 1;
    int to = To[x];
    if(!Dfn[to])
    {
        Tarjan(to);
        Low[x] = std::min(Low[x], Low[to]);
    }
    else if(Vis[x]) Low[x] = std::min(Low[x], Dfn[to]);
    if(Dfn[x] == Low[x])
    {
        int t, res = 0;
        do
        {
            t = Stack[Tail--];
            Vis[t] = 0;
            ++res;
        }
        while(t != x);
        if(res > 1 && res < Ans) Ans = res;
    }
}

int main()
{
    N = read();
    for(int i = 1; i <= N; ++i) To[i] = read();
    for(int i = 1; i <= N; ++i)
        if(!Dfn[i]) Tarjan(i);
    printf("%d\n", Ans);
    return 0;
}

转载于:https://www.cnblogs.com/zcdhj/p/9365245.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值