zoukankan      html  css  js  c++  java
  • POJ1144(割点)

    Network

    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 12551   Accepted: 5771

    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

    Hint

    You need to determine the end of one line.In order to make it's easy to determine,there are no extra blank before the end of each line.
     
     1 //2016.9.16
     2 #include <iostream>
     3 #include <cstdio>
     4 #include <cstring>
     5 #define N 105
     6 
     7 using namespace std;
     8 
     9 int n, root, book[N], edge[N][N], num[N], low[N], Index;
    10 //book用来记录哪些点是割点,edge以邻接矩阵保存图,num[i]为顶点i的时间戳,low[i]为顶点i不经过父顶点所能回到的最小时间戳
    11 
    12 void dfs(int cur, int fa)
    13 {
    14     int child = 0;
    15     Index++;
    16     num[cur] = low[cur] = Index;
    17     for(int i = 1; i <= n; i++)
    18     {
    19         if(edge[cur][i]==1)
    20         {
    21             if(num[i] == 0)
    22             {
    23                 child++;
    24                 dfs(i, cur);
    25                 low[cur] = min(low[cur], low[i]);
    26                 if(cur!=root && low[i]>=num[cur])
    27                       book[cur] = 1;
    28                 if(cur==root && child==2)
    29                       book[cur] = 1;
    30             }else if(i != fa)
    31             {
    32                 low[cur] = min(low[cur], num[i]);
    33             }
    34         }
    35     }
    36     return;
    37 }
    38 
    39 int main()
    40 {
    41     int u, v;
    42     while(scanf("%d", &n) && n)
    43     {
    44         memset(edge, 0, sizeof(edge));
    45         memset(low, 0, sizeof(low));
    46         memset(num, 0, sizeof(num));
    47         memset(book, 0, sizeof(book));
    48         Index = 0; root = 1;
    49         while(scanf("%d", &u) && u)
    50         {
    51             while(getchar() != '
    ')
    52             {
    53                 scanf("%d", &v);
    54                 edge[u][v] = 1;
    55                 edge[v][u] = 1;
    56             }
    57         }
    58         dfs(1, root);
    59         int cnt = 0;
    60         for(int i = 1; i <= n; i++)
    61               if(book[i])cnt++;
    62         printf("%d
    ", cnt);
    63     }
    64 
    65     return 0;
    66 }
  • 相关阅读:
    微信小程序实现课程表实例
    探索Java中的网络编程技术
    Java中的Spring MVC简介笔记
    我没有想赢,我只是不想输
    下次路过,人间再无我。
    从零基础入门MySQL数据库基础课
    vue.js-详解三大流行框架VUE_快速进阶前端大咖-Vue基础
    学习网站/实用工具,收藏的快搜网站,想找什么都有!!!
    【灵魂拷问】你真的懂得Mysql的管理和使用吗?
    【领会要领】web前端-轻量级框架应用(jQuery基础)
  • 原文地址:https://www.cnblogs.com/Penn000/p/5876819.html
Copyright © 2011-2022 走看看