poj 1144 Network【无向图求割顶模板题】

Description

A Telephone Line Company (TLC) is establishing a new telephone cable network. They are connecting several places numbered by integers from 1 to N. No two places have the same number. The lines are bidirectional and always connect together two places and in each place the lines end in a telephone exchange. There is one telephone exchange in each place. From each place it is possible to reach through lines every other place, however it need not be a direct connection, it can go through several exchanges. 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 place with 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 trying to write a program for finding the number of all such critical places. Help them.

Input

The input file consists of several blocks of lines. Each block describes one network. In the first line of each block there is the number of places N < 100. Each of the next at most N lines contains the number of a place followed by the numbers of some places to which there is a direct line from this place. These at most N lines completely describe the network, i.e., each direct connection of two places in the network is contained at least in one row. All numbers in one line are separated by one space. Each block ends with a line containing just 0. The last block has only one line with N = 0.

Output

The output contains for each block except the last in the input file one line containing the number of critical places.

Sample Input

5
5 1 2 3 4
0
6
2 1 3
5 4 6 2
0
0

Sample Output

1
2

用的大白的模板 1A

#include <iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
using namespace std;
#define maxn 200
int pre[maxn],iscut[maxn],dfs_clock,low[maxn];
vector<int>G[maxn];
int dfs(int u,int fa)
{
    int lowu=pre[u]=++dfs_clock;
    int child=0;
    for(int i=0;i<G[u].size();i++)
    {
        int v=G[u][i];
        if(!pre[v])
        {
            child++;
            int lowv=dfs(v,u);
            lowu=min(lowu,lowv);
            if(lowv>=pre[u])
                iscut[u]=true;
        }
        else if(pre[v]<pre[u]&&v!=fa)
            lowu=min(lowu,pre[v]);
    }
    if(fa<0&&child==1)iscut[u]=0;
    low[u]=lowu;
    return lowu;
}
int main()
{
   // freopen("cin.txt","r",stdin);
    int n;
    while(~scanf("%d",&n)&&n)
    {
        char str[200];
        memset(pre,0,sizeof(pre));
        memset(iscut,0,sizeof(iscut));
        for(int i=1;i<=n;i++)G[i].clear();
        dfs_clock=0;
        getchar();
        while(gets(str))
        {
            if(str[0]=='0')break;
            int i,u=0,len=strlen(str);
            //printf("len=%d\n",len);
            for(i=0;i<len;i++)
            {
                if(str[i]==' ')break;
                u+=(str[i]-'0');
                u*=10;
            }
            i++;
            u/=10;
           // printf("u=%d\n",u);
            int tmp=0;
            for(;i<len;i++)
            {
                if(str[i]==' ')
                {
                    tmp/=10;
                   // printf("tmp=%d\n",tmp);
                    G[u].push_back(tmp);
                    G[tmp].push_back(u);
                    tmp=0;
                    i++;
                }
                tmp+=(str[i]-'0');
                tmp*=10;
                if(i==len-1)
                {
                    tmp/=10;
                    //printf("tmp=%d\n",tmp);
                    G[u].push_back(tmp);
                    G[tmp].push_back(u);
                    break;
                }
            }
        }
        for(int i=1;i<=n;i++)
        {
            if(!pre[i])dfs(i,-1);
            //if(!G[i].empty())for(int j=0;j<G[i].size();j++)printf("i=%d,j=%d\n",i,G[i][j]);
        }
        int num=0;
        for(int i=1;i<=n;i++)
            if(iscut[i])num++;
        printf("%d\n",num);
    }
    return 0;
}


全部评论

相关推荐

07-23 11:37
延安大学 C++
绷不住了,晚上十点发拒信,是还在加班吗这样一想挂了好像也没什么不好
码农索隆:这个都是真人发嘛,会用到机器人定时发嘛
点赞 评论 收藏
分享
06-26 15:33
青岛工学院 Java
积极的秋田犬要冲国企:他现在邀请我明天面试
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务