题目链接:https://vjudge.net/problem/UVA-796

In a computer network a link L, which interconnects two servers, is considered critical if there are at least two servers A and B such that all network interconnection paths between A and B pass through L. Removing a critical link generates two disjoint sub–networks such that any two servers of a sub–network are interconnected. For example, the network shown in figure 1 has three critical links that are marked bold: 0 -1, 3 - 4 and 6 - 7. Figure 1: Critical links It is known that:

1. the connection links are bi–directional;

2. a server is not directly connected to itself;

3. two servers are interconnected if they are directly connected or if they are interconnected with the same server;

4. the network can have stand–alone sub–networks. Write a program that finds all critical links of a given computer network.

Input

The program reads sets of data from a text file. Each data set specifies the structure of a network and has the format: no of servers server0 (no of direct connections) connected server . . . connected server . . . serverno of servers (no of direct connections) connected server . . . connected server The first line contains a positive integer no of servers(possibly 0) which is the number of network servers. The next no of servers lines, one for each server in the network, are randomly ordered and show the way servers are connected. The line corresponding to serverk, 0 ≤ k ≤ no of servers − 1, specifies the number of direct connections of serverk and the servers which are directly connected to serverk. Servers are represented by integers from 0 to no of servers − 1.Input data are correct. The first data set from sample input below corresponds to the network in figure 1, while the second data set specifies an empty network.

Output

The result of the program is on standard output. For each data set the program prints the number of critical links and the critical links, one link per line, starting from the beginning of the line, as shown in the sample output below. The links are listed in ascending order according to their first element. The output for the data set is followed by an empty line.

Sample Input

8

0 (1) 1

1 (3) 2 0 3

2 (2) 1 3

3 (3) 1 2 4

4 (1) 3

7 (1) 6

6 (1) 7

5 (0)

0

Sample Output

3 critical links

0 - 1

3 - 4

6 - 7

0 critical links

题解:

题目要求:按字典序输出桥。

代码如下:

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <string>
#include <set>
#define ms(a,b) memset((a),(b),sizeof((a)))
using namespace std;
typedef long long LL;
const double EPS = 1e-;
const int INF = 2e9;
const LL LNF = 2e18;
const int MAXN = 1e3+; struct Edge
{
int to, next;
bool cut;
}edge[MAXN*MAXN*];
int tot, head[MAXN]; int Index, DFN[MAXN], Low[MAXN];
int bridge; void addedge(int u, int v)
{
edge[tot].to = v;
edge[tot].next = head[u];
edge[tot].cut = false;
head[u] = tot++;
} void Tarjan(int u, int pre)
{
DFN[u] = Low[u] = ++Index;
for(int i = head[u]; i!=-; i = edge[i].next)
{
int v = edge[i].to;
if(v==pre) continue;
if(!DFN[v])
{
Tarjan(v, u);
Low[u] = min(Low[u], Low[v]);
if( Low[v]>DFN[u])
{
edge[i].cut = edge[i^].cut = true;
bridge++;
}
}
else
Low[u] = min(Low[u], DFN[v]);
}
} void init()
{
bridge = tot = ;
memset(head, -, sizeof(head)); Index = ;
memset(DFN, , sizeof(DFN));
memset(Low, , sizeof(Low));
} int main()
{
int n;
while(scanf("%d", &n)!=EOF)
{
init();
int u, m, v;
for(int i = ; i<=n; i++)
{
scanf("%d (%d)", &u, &m);
for(int j = ; j<=m; j++)
{
scanf("%d", &v);
addedge(u, v);
addedge(v, u);
}
} for(int i = ; i<n; i++)
if(!DFN[i])
Tarjan(i, i); vector<pair<int, int> >a;
for(int u = ; u<n; u++)
for(int i = head[u]; i!=-; i = edge[i].next)
{
if(edge[i].cut && u<edge[i].to)
a.push_back(make_pair(u, edge[i].to));
} sort(a.begin(), a.end());
printf("%d critical links\n", bridge);
for(int i = ; i<a.size(); i++)
printf("%d - %d\n", a[i].first, a[i].second);
printf("\n");
}
}

最新文章

  1. Android开发--Android Studio配置
  2. web api Post 接收不到参数的问题
  3. phpcms新闻轮播图实现
  4. 关于mybatis 在C#.Net中批量增,删,改
  5. lightoj 1015
  6. Java中的NIO和IO的对比分析
  7. Content Provider Basics ——Content Provider基础
  8. Android Studio 导入Eclipse工程
  9. ios像素点颜色取样
  10. css多行文本垂直居中问题研究
  11. SE 2014年5月25日
  12. Q &amp; A
  13. requireJS教程
  14. css3属性(1)
  15. 设计模式(Design Patterns)Java版
  16. 通过 MySQL 存储原理来分析排序和锁(转)
  17. flask 操作数据库(分类)
  18. shell脚本实例-批量检查多个网站地址是否正常
  19. 文件内容操作篇clearerr fclose fdopen feof fflush fgetc fgets fileno fopen fputc fputs fread freopen fseek ftell fwrite getc getchar gets
  20. 正则表达式入门(c#)

热门文章

  1. zoj 2829 Beautiful Number
  2. 80. Hibernate 5.0命名策略使用naming-strategy 不起作用【从零开始学Spring Boot】
  3. Poj1704:staircase nim【博弈】
  4. Codeforces 892 D.Gluttony
  5. ubuntu samba 配置简介
  6. zookeeper学习0
  7. 《TCP/IP详解卷1:协议》——第3章 IP:网际协议(转载)
  8. 解决使用FusionCharts以后从后台获取数据中文乱码的问题
  9. CSS属性操作二
  10. django学习之- 信号