http://acm.hdu.edu.cn/showproblem.php?pid=4612

Warm up

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)
Total Submission(s): 8309    Accepted Submission(s): 1905

Problem Description
  N planets are connected by M bidirectional channels that allow instant transportation. It's always possible to travel between any two planets through these channels.
  If we can isolate some planets from others by breaking only one channel , the channel is called a bridge of the transportation system.
People don't like to be isolated. So they ask what's the minimal number of bridges they can have if they decide to build a new channel.
  Note that there could be more than one channel between two planets.
 
Input
  The input contains multiple cases.
  Each case starts with two positive integers N and M , indicating the number of planets and the number of channels.
  (2<=N<=200000, 1<=M<=1000000)
  Next M lines each contains two positive integers A and B, indicating a channel between planet A and B in the system. Planets are numbered by 1..N.
  A line with two integers '0' terminates the input.
 
Output
  For each case, output the minimal number of bridges after building a new channel in a line.
 
Sample Input
4 4
1 2
1 3
1 4
2 3
0 0
 
Sample Output
0
题目大意:给一个连通图,求加一条边之后最少还有多少个桥。
题目分析:首先看到要求是"改造桥",则先进行缩点,由于是改造桥,所以进行边双连通的缩点,然后求树的直径【树上桥最多的一条路】,则最后结果ans=原来桥数-直径。
题解:Tarjan缩点求桥数+两次bfs求树的直径
 #include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<queue>
using namespace std;
queue<int>pq;
struct edge {
int fr;
int to;
int next;
}e[], e2[];
int cnt, scc_cnt, ccnt, tim;
int head[], head2[], dfn[], low[], stk[], col[],d[], tp,dis,node;
bool in_stk[], vis[];
int ans = ;
void dfs(int x, int fa) {
d[x] = dis++;
for (int i = head2[x]; i != -; i = e2[i].next) {
int v = e2[i].to;
if (v == fa)continue;
if (!vis[v]) {
vis[v] = ;
dfs(v, x);
}
}
return;
}
void bfs(int x) {
while (!pq.empty())pq.pop();
pq.push(x);
memset(d, , sizeof(d));
memset(vis, , sizeof(vis));
while (!pq.empty()) {
int s = pq.front(); pq.pop();
for (int i = head2[s]; i != -; i = e2[i].next) {
int v = e2[i].to;
if (!vis[v]) {
vis[v] = ;
d[v] = d[s] + ;
pq.push(v);
if (d[v] > ans) {
node = v;
ans = d[v];
}
}
}
}
}
void Tarjan(int u, int fa, int id) {
dfn[u] = low[u] = ++tim;
in_stk[u] = ;
stk[tp++] = u;
for (int i = head[u]; i != -; i = e[i].next) {
int v = e[i].to;
if (!dfn[v]) {
Tarjan(v, u, i);
if (low[v] < low[u])low[u] = low[v];
}
else if (in_stk[v] && ((i ^ ) != id)) {
if (dfn[v] < low[u])low[u] = dfn[v];//这里使用dfn[v]和low[v]都可以
}
}
if (dfn[u] == low[u]) {
scc_cnt++;
do {
tp--;
int tt = stk[tp];
col[tt] = scc_cnt;
in_stk[tt] = ;
} while (stk[tp] != u);
}
}
void add(int x, int y) {
e[cnt].fr = x;
e[cnt].to = y;
e[cnt].next = head[x];
head[x] = cnt++;
}
void add2(int x, int y) {
e2[ccnt].fr = x;
e2[ccnt].to = y;
e2[ccnt].next = head2[x];
head2[x] = ccnt++;
}
int main() {
int n, m;
scanf("%d%d", &n, &m);
while (n || m) {
cnt = ;
tp = ;
scc_cnt = ;
ccnt = ;
ans = ;
tim = ;
memset(vis, , sizeof(vis));
memset(in_stk, , sizeof(in_stk));
memset(col, , sizeof(col));
memset(head, -, sizeof(head));
memset(head2, -, sizeof(head2));
memset(dfn, , sizeof(dfn));
memset(low, , sizeof(low));
while (m--) {
int a, b;
scanf("%d%d", &a, &b);
add(a, b);
add(b, a);
}
for (int i = ; i <= n; i++) {
if (!dfn[i]) {
Tarjan(i, -, -);
}
}
for (int i = ; i < cnt; i += ) {
if (col[e[i].fr] != col[e[i].to]) {
add2(col[e[i].fr], col[e[i].to]);
add2(col[e[i].to], col[e[i].fr]);
}
}
bfs();
bfs(node);
cout << ccnt / - ans << endl;
scanf("%d%d", &n, &m);
}
return ;
}
 

【HDOJ4612】【双连通分量缩点+找树的直径】的更多相关文章

  1. HDU 4612 Warm up(双连通分量缩点+求树的直径)

    思路:强连通分量缩点,建立一颗新的树,然后求树的最长直径,然后加上一条边能够去掉的桥数,就是直径的长度. 树的直径长度的求法:两次bfs可以求,第一次随便找一个点u,然后进行bfs搜到的最后一个点v, ...

  2. HDU 3686 Traffic Real Time Query System(双连通分量缩点+LCA)(2010 Asia Hangzhou Regional Contest)

    Problem Description City C is really a nightmare of all drivers for its traffic jams. To solve the t ...

  3. POJ3177 Redundant Paths(边双连通分量+缩点)

    题目大概是给一个无向连通图,问最少加几条边,使图的任意两点都至少有两条边不重复路径. 如果一个图是边双连通图,即不存在割边,那么任何两个点都满足至少有两条边不重复路径,因为假设有重复边那这条边一定就是 ...

  4. 训练指南 UVA - 11324(双连通分量 + 缩点+ 基础DP)

    layout: post title: 训练指南 UVA - 11324(双连通分量 + 缩点+ 基础DP) author: "luowentaoaa" catalog: true ...

  5. HDU 4612 Warm up (边双连通分量+缩点+树的直径)

    <题目链接> 题目大意:给出一个连通图,问你在这个连通图上加一条边,使该连通图的桥的数量最小,输出最少的桥的数量. 解题分析: 首先,通过Tarjan缩点,将该图缩成一颗树,树上的每个节点 ...

  6. Gym - 100676H H. Capital City (边双连通分量缩点+树的直径)

    https://vjudge.net/problem/Gym-100676H 题意: 给出一个n个城市,城市之间有距离为w的边,现在要选一个中心城市,使得该城市到其余城市的最大距离最短.如果有一些城市 ...

  7. hdu4612 Warm up[边双连通分量缩点+树的直径]

    给你一个连通图,你可以任意加一条边,最小化桥的数目. 添加一条边,发现在边双内是不会减少桥的.只有在边双与边双之间加边才有效.于是,跑一遍边双并缩点,然后就变成一棵树,这样要加一条非树边,路径上的点( ...

  8. poj 3177 Redundant Paths(边双连通分量+缩点)

    链接:http://poj.org/problem?id=3177 题意:有n个牧场,Bessie 要从一个牧场到另一个牧场,要求至少要有2条独立的路可以走.现已有m条路,求至少要新建多少条路,使得任 ...

  9. 图论-桥/割点/双连通分量/缩点/LCA

    基本概念: 1.割点:若删掉某点后,原连通图分裂为多个子图,则称该点为割点. 2.割点集合:在一个无向连通图中,如果有一个顶点集合,删除这个顶点集合,以及这个集合中所有顶点相关联的边以后,原图变成多个 ...

随机推荐

  1. win7下使用U盘安装双系统(Ubuntu-17)

    1.首先下载Ubuntu镜像文件,下载地址:http://mirrors.neusoft.edu.cn/ 2.下载 U盘操作系统安装工具- Universal USB Installer ,下载地址: ...

  2. GitHub下的文件放到Linux系统下

    1.在GitHub账号下clone URL 项目. 2.到Linux服务器下执行以下操作: (1)  mkdir test (2)  cd test/ (3)  git clone  复制的项目URL

  3. vs2017 Mariadb/mysql之旅

    记录vs2017使用 ef6+mysql的开发 填坑之旅.我的环境 vm+centos7+ docker-ce+mariadb+vs2017 总的原则是MySql.Data.Entity 要和 mys ...

  4. Javascript this 的一些总结

    1.1.1 摘要 相信有C/C++.C#或Java等编程经验的各位,对于this关键字再熟悉不过了.由于Javascript是一种面向对象的编程语言,它和C/C++.C#或Java一样都包含this关 ...

  5. nginx+vue刷新404

    问题原因:刷新页面时访问的资源在服务端找不到,因为vue-router设置的路径不是真实存在的路径.如上的404现象,是因为在nginx配置的根目录/Data/app/xqsj_wx/dist下面压根 ...

  6. 前端vue项目-关于下载文件pdf/excel(三)

    最近在做一些需求,需要下载一些文件信息,最频繁的就是下载excel文件到本地了 看过了很多方法,做个整理吧哈哈哈哈 参考的文章链接: https://www.cnblogs.com/jiangweic ...

  7. TTL特殊门电路

    集电极开路(OC)门:主要作用实现线与功能:用做驱动器:实现电平转换 三态输出(TS)门:应用于计算机总线结构,通过分时控制三态门始轮端使得cpu与不同的外设通信:应用于双向传输,实现门电路与总线实现 ...

  8. c# async/await异步编程死锁的问题

    在异步编程中,如果稍有不注意,就会造成死锁问题.何为死锁:即两个以上的线程同时争夺被互相锁住的资源,两个都不放手. 在UI或asp.net中,容易造成死锁的代码如下所示: private void b ...

  9. 页面显示时间js

    //页面显示时间 <span align="left" id="OperatorTime"> </span> <script> ...

  10. 7.6 C++基本序列式容器效率比较

    参考:http://www.weixueyuan.net/view/6403.html 总结: 对于vector而言,它只是一个可以伸缩长度的数组 对于deque而言,它是一个可以操作头部和尾部的并且 ...