首页 > 代码库 > POJ1144(割点)
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.
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;
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
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() != ‘\n‘)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\n", cnt);63 }64 65 return 0;66 }
POJ1144(割点)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。