程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj1144-Network(求割點)

poj1144-Network(求割點)

編輯:C++入門知識

Network Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 7278   Accepted: 3419

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
簡單的求割點的算法,直接套模板就好



[cpp] 

  1. #include<stdio.h>   
  2. #include<string.h>   
  3. struct node  
  4. {  
  5.     int to;  
  6.     int next;  
  7. } p[10005];  
  8. int dfn[105],low[105];  
  9. int head[105],vis[105];  
  10. int cut[105];  
  11. int m,e,root;  
  12. int min(int a,int b)  
  13. {  
  14.     return a<b?a:b;  
  15. }  
  16. void add(int u,int v)  
  17. {  
  18.     p[e].to=v;  
  19.     p[e].next=head[u];  
  20.     head[u]=e++;  
  21. }  
  22. void dfs(int u,int father,int a)  
  23. {  
  24.     int son=0;  
  25.     vis[u]=1;  
  26.     dfn[u]=low[u]=a;  
  27.     for(int i=head[u]; i!=-1; i=p[i].next)  
  28.     {  
  29.         int v=p[i].to;  
  30.         if(vis[v]==1&&v!=father)  
  31.             low[u]=min(low[u],dfn[v]);  
  32.         if(vis[v]==0)  
  33.         {  
  34.             dfs(v,u,a+1);  
  35.             son++;  
  36.             low[u]=min(low[u],low[v]);  
  37.             if((u==root&&son>1)||(u!=root&&dfn[u]<=low[v]))  
  38.                 cut[u]=1;  
  39.         }  
  40.     }  
  41.     vis[u]=2;  
  42. }  
  43. int main()  
  44. {  
  45.     while(scanf("%d",&m)&&m!=0)  
  46.     {  
  47.         memset(dfn,0,sizeof(dfn));  
  48.         memset(low,0,sizeof(low));  
  49.         memset(head,-1,sizeof(head));  
  50.         memset(vis,0,sizeof(vis));  
  51.         memset(cut,0,sizeof(cut));  
  52.         int n;  
  53.         e=0;  
  54.         while(scanf("%d",&n)&&n!=0)  
  55.         {  
  56.             while(getchar()!='\n')  
  57.             {  
  58.                 int a;  
  59.                 scanf("%d",&a);  
  60.                 add(n,a);  
  61.                 add(a,n);  
  62.             }  
  63.         }  
  64.         root=1;  
  65.         int sum=0;  
  66.         dfs(1,-1,1);  
  67.         for(int i=1; i<=m; i++)  
  68.             if(cut[i])  
  69.                 sum++;  
  70.         printf("%d\n",sum);  
  71.     }  
  72.     return 0;  
  73. }  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved