poj 1144 Network(模板题)(Tarjan 关节点的朴素算法)

来源:互联网 发布:淘宝免单真的假的 编辑:程序博客网 时间:2024/05/22 13:59

Network
Time Limit: 1000MS
Memory Limit: 10000KTotal Submissions: 11025
Accepted: 5095

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

55 1 2 3 4062 1 35 4 6 200

Sample Output

12

思路:

求无向图的关节点模板题,用Tarjan算法,多写几题,弄成模板。

代码:

//292K16MS#include<iostream>#include<cstdio>#include<cstring>using namespace std;#define maxn 101#define min(a,b) ((a)>(b)?(b):(a))int edge[maxn][maxn];int low[maxn];int dfn[maxn];int vis[maxn];int tmpdfn;int nodes;int son;int subnets[maxn];void init(){    low[1]=dfn[1]=1;    tmpdfn=1;son=0;    memset(vis,0,sizeof(vis));    vis[1]=1;    memset(subnets,0,sizeof(subnets));}void dfs(int u){    for(int v=1;v<=nodes;v++)    {        if(edge[u][v])        {            if(!vis[v])            {                vis[v]=1;                tmpdfn++;low[v]=dfn[v]=tmpdfn;                dfs(v);                low[u]=min(low[u],low[v]);                if(dfn[u]<=low[v])                {                    if(u!=1) subnets[u]++;                    if(u==1) son++;                }            }            else                low[u]=min(low[u],dfn[v]);        }    }}int main(){    int u,v;    while(~scanf("%d",&nodes)&&nodes)    {        memset(edge,0,sizeof(edge));        while(scanf("%d",&u) && u)        {            while(getchar()!='\n')            {                scanf("%d",&v);                edge[u][v]=edge[v][u]=1;            }        }        init();        dfs(1);        if(son>1) subnets[1]=son-1;        int find=0;        for(int i=1;i<=nodes;i++)        {            if(subnets[i])                find++;        }        cout<<find<<endl;    }    return 0;}




0 0
原创粉丝点击