12206. 电缆网络

12206. 电缆网络

电话线路公司(TLC)正在建立一个新的电话电缆网络。它们连接了n个位置。每个地方都有一个交换机。电缆是双向的,连接两个地方,电缆每一端都会连接到当地的交换机中。从每一个地方都可以通过电缆连接到其他地方(可以通过其他交换机到达某地,而未必直接连接)。
有时有的地方停电导致交换机故障。TLC官员认识到,在这样的情况下,除了停电的地方无法到达之外,也可能导致其他地方无法相互连接。在这样的情况下我们会说那个停电的地方是关键的。现在,官员们正在努力编写一个程序来查找所有这些关键地点的数量。帮帮他们。
========================================================= A Telephone Line Company (TLC) is establishing a new telephone cable network. They are connectingseveral places numbered by integers from 1 to N. No two places have the same number. The linesare bidirectional and always connect together two places and in each place the lines end in a telephoneexchange. There is one telephone exchange in each place. From each place it is possible to reachthrough lines every other place, however it need not be a direct connection, it can go through severalexchanges. From time to time the power supply fails at a place and then the exchange does not operate.The officials from TLC realized that in such a case it can happen that besides the fact that the placewith the failure is unreachable, this can also cause that some other places cannot connect to each other.In such a case we will say the place (where the failure occured) is critical. Now the officials are tryingto write a program for finding the number of all such critical places. Help them.

输入格式:

输入文件由多个部分组成。每个部分描述一个网络。
每个部分的第一行,给出位置个数n(n<100)。
接下来至多有N行,每行首先给出一个位置的编号i,然后出现的编号表示此位置与i相连。请注意,电缆连接是双向的,保证一条电缆一定会在某端点作为i的时候被给出。
每部分以0结束。
文件末尾,在最后一个部分以0结束后,会再给出一个0.

输出格式:

按顺序输出给出网络的关键地点数,每行一个。
样例 1 :

输入:
5
5 1 2 3 4
0
6
2 1 3
5 4 6 2
0
0
输出:
1
2
样例 2 :

输入:
5
1 2
2 3
3 4
4 5
5 1
0
5
1 2
2 3
3 4
4 5
0
0
输出:
0
3

#include <iostream>
#include <cstdio>
#include <vector>
#include <cstring>

using namespace std;

const int max_N = 100 + 5;

int n,a,b;
// 
int num[max_N],low[max_N],flag[max_N],time_index;
int ans,root;
char c;
vector<int> g[max_N];

void dfs(int cur,int fa)
{
    // 用来记录生成树中当前顶点的子节点个数
    int child=0;

    // 每次搜索递增时间戳index
    ++time_index;
    // 给当前节点编号
    num[cur]=time_index;
    // 初始化所能到达的最早节点为当前节点
    low[cur]=time_index;

    // 遍历与此节点相邻的节点
    for(int i=0;i<g[cur].size();++i)
    {
        int v=g[cur][i];
        if(num[v]==0)
        {
            // 与当前节点相邻,且未被访问过的节点,是dfs序中当前节点的子节点
            ++child;
            // 深搜遍历当前节点的子节点
            dfs(v,cur);
            // 由于子节点可达当前节点,更新当前节点的最早可达值为当前的最小值和子节点最小值中较小的一个
            low[cur]=min(low[cur],low[v]);
            // 非根节点满足low[v]>=num[cur],
            if(cur!=root && low[v]>=num[cur])
            {
                // 可能被标记多次,可用来统计此割点将多少个点与根节点断开。
                // 错误警示,当时在此处直接ans++,统计错误.
                flag[cur]=1;
            }
            if(cur==root && child==2)
            {
                flag[cur]=1;
            }
        }
        // 如果该节点已经被访问过,且不是其父节点,更新当前可达的最小编号的值
        else if(v!=fa)
        {
            // low[v]?
            low[cur]=min(num[v],low[cur]);
        }
    }
}

int solve()
{

    memset(num,0,sizeof(num));
    memset(flag,0,sizeof(flag));
    //memset(low,0,sizeof(low));
    ans=0;
    time_index=0;
    root=1;

    dfs(1,root);

    for(int i=1;i<=n;++i)
    {
        if(flag[i])
        {
            ++ans;
        }
    }

    return ans;
}

int main()
{
    scanf("%d",&n);
    while(n)
    {
        scanf("%d",&a);
        while(a)
        {
            c=getchar();
            if(c=='\n')
            {
                scanf("%d",&a);
                continue;
            }
            scanf("%d",&b);
            g[a].push_back(b);
            g[b].push_back(a);
        }

        printf("%d\n",solve());
        for(int i=1;i<=n;++i)
        {
            g[i].clear();
        }
        scanf("%d",&n);
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值