kuangbin专题 专题九 连通图 Warm up HDU - 4612
题目链接:https://vjudge.net/problem/HDU-4612
题目:一个大地图,给定若干个连通图,每个连通图中有若干个桥,你可以在任意某个连通图的
任意两个点添加一条边,问,添加一条边后,大地图中最少剩下几个桥。
思路:tarjan缩点,重构图,对每个新图跑两次dfs求出树的直径,取所有新图的直径max,
答案就是 大地图总桥数 - max(树的直径)。
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
using namespace std;
#define pb push_back const int N = (int)2e5+;
const int M = (int)1e6+;
int n,m,bridge,tot,tim,top,scc;
int head[N],dfn[N],low[N],s[N],scc_no[N],vis[N];
struct node{
int to;
int nxt;
}e[M << ];
vector<int> g[N];//新图
vector<int> poi;//存单个连通图包含的点 void init(){
for(int i = ; i <= n; ++i){
head[i] = -;
dfn[i] = ;
g[i].clear();
}
bridge = tot = tim = top = scc = ;
} inline void add(int u,int v){
e[tot].to = v;
e[tot].nxt = head[u];
head[u] = tot++;
} //tarjan缩点
void tarjan(int now,int pre){
poi.pb(now);//存下这个连通图包含的点
dfn[now] = low[now] = ++tim;
s[top++] = now;
int to,pre_cnt = ;
for(int o = head[now]; ~o; o = e[o].nxt){
to = e[o].to;
if(to == pre && pre_cnt == ) { pre_cnt = ; continue; }
if(!dfn[to]){
tarjan(to,now);
low[now] = min(low[now],low[to]);
if(dfn[now] < low[to]) ++bridge;
}else low[now] = min(low[now],dfn[to]);
} if(dfn[now] == low[now]){
int x;
++scc;
do{
x = s[--top];
scc_no[x] = scc;
}while(now != x);
}
} //对poi中的那些点新建一个图
void rebuild(){
int to,now;
for(int i = ; i < (int)poi.size(); ++i){
now = poi[i];
for(int o = head[now]; ~o; o = e[o].nxt){
to = e[o].to;
if(scc_no[now] == scc_no[to]) continue;
g[scc_no[now]].pb(scc_no[to]); g[scc_no[to]].pb(scc_no[now]);
}
}
} void dfs(int now,int pre,int deep){
vis[now] = deep;
int to;
for(int i = ; i < (int)g[now].size(); ++i){
to = g[now][i];
if(to == pre || to == now || vis[to]) continue;
dfs(to,now,deep+);
}
} void test01(){
for(int i = ; i <= n; ++i)
printf("%d 属于scc = %d\n",i,scc_no[i]);
} void solve(){ int max_deep = ,_deep = ;
int u;
for(int i = ; i <= n; ++i){
if(!dfn[i]){
poi.clear();//清空上个连通图中的点
tarjan(i,i);
rebuild();//poi中的点重建图
dfs(poi[],poi[],);
_deep = ;
for(int i = ; i < poi.size(); ++i){
if(_deep < vis[poi[i]]){ _deep = vis[poi[i]]; u = poi[i]; }
vis[poi[i]] = ; //这里别忘了初始化 不然下次dfs会出错
}
dfs(u,u,);
for(int i = ; i < poi.size(); ++i){
_deep = max(_deep,vis[poi[i]]);
vis[poi[i]] = ;//这里别忘了初始化 不然下组数据的dfs会出错
}
max_deep = max(max_deep,_deep);//对每个连通图跑两次dfs求树的直径,取max
}
}
// cout << bridge << " " << max_deep << endl;
printf("%d\n",bridge - max_deep +);
} int main(){ int u,v;
while(~scanf("%d%d",&n,&m) && (n+m)){
init();
for(int i = ; i < m; ++i){
scanf("%d%d",&u,&v);
add(u,v); add(v,u);
}
solve();
} return ;
}
4 4
1 2
1 3
1 4
2 3
11 12
1 2
1 3
3 2
3 4
4 5
4 6
6 7
7 8
7 9
8 9
8 11
9 10
6 7
1 2
1 3
2 3
3 4
4 5
4 6
5 6
8 6
1 2
1 3
1 4
1 5
7 6
6 8
kuangbin专题 专题九 连通图 Warm up HDU - 4612的更多相关文章
- kuangbin专题 专题九 连通图 Strongly connected HDU - 4635
题目链接:https://vjudge.net/problem/HDU-4635 题目:有向图,给定若干个连通图,求最多还能添加几条边,添完边后,图仍然要满足 (1)是简单图,即没有重边或者自环 (2 ...
- F - Warm up - hdu 4612(缩点+求树的直径)
题意:有一个无向连通图,现在问添加一条边后最少还有几个桥 分析:先把图缩点,然后重构图为一棵树,求出来树的直径即可,不过注意会有重边,构树的时候注意一下 *********************** ...
- (求树的直径)Warm up -- HDU -- 4612
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4612 给一个无向图, 加上一条边后,求桥至少有几个: 那我们加的那条边的两个顶点u,v:一定是u,v之 ...
- Warm up HDU - 4612( 树的直径 边双连通分量)
求在图中新建一条边后 剩下的最少的桥的数量..先tarjan求桥的数量..然后缩点..以连通分量为点建图 bfs求直径 最后用桥的数量减去直径即为答案 bfs求直径 https://www.cnb ...
- F - Warm up HDU - 4612 tarjan缩点 + 树的直径 + 对tajan的再次理解
题目链接:https://vjudge.net/contest/67418#problem/F 题目大意:给你一个图,让你加一条边,使得原图中的桥尽可能的小.(谢谢梁学长的帮忙) 我对重边,tarja ...
- Warm up HDU - 4612 树的直径
题意:给出n个点和m条边的无向图,存在重边,问加一条边以后,剩下的桥的数量最少为多少. 题解: 你把这个无向图缩点后会得到一个只由桥来连接的图(可以说这个图中的所有边都是桥,相当于一棵树),然后我们只 ...
- [kuangbin带你飞]专题九 连通图
ID Origin Title 76 / 163 Problem A POJ 1236 Network of Schools 59 / 177 Problem B UVA 315 Ne ...
- 「kuangbin带你飞」专题十九 矩阵
layout: post title: 「kuangbin带你飞」专题十九 矩阵 author: "luowentaoaa" catalog: true tags: mathjax ...
- Hdu 4612 Warm up (双连通分支+树的直径)
题目链接: Hdu 4612 Warm up 题目描述: 给一个无向连通图,问加上一条边后,桥的数目最少会有几个? 解题思路: 题目描述很清楚,题目也很裸,就是一眼看穿怎么做的,先求出来双连通分量,然 ...
随机推荐
- AMD R5 2400G插帧教程
最近买的小主机带的是AMD R5 2400G显卡,支持AMD的插帧技术,Sandeepin肯定要体验一把效果. BlueskyFRC 按照网上的教程配置,似乎2400G显卡驱动里没有AMD Fluid ...
- Spring Cloud Alibaba 之 Sentinel 限流规则和控制台实例
这一节我们通过一个简单的实例,学习Sentinel的基本应用. 一.Sentinel 限流核心概念 在学习Sentinel的具体应用之前,我们先来了解一下Sentinel中两个核心的概念,资源和规则. ...
- Can you answer these queries III(线段树)
Can you answer these queries III(luogu) Description 维护一个长度为n的序列A,进行q次询问或操作 0 x y:把Ax改为y 1 x y:询问区间[l ...
- COCOAPI for windows error!
refer this https://github.com/philferriere/cocoapi However, you may encounter a bug where you cannot ...
- 工具之grep
转自:http://www.cnblogs.com/dong008259/archive/2011/12/07/2279897.html grep (global search regular exp ...
- Java 构造方法总结
Java 构造方法总结 ①方法名和 类名相同 ②在方法名的前面没有返回值类型的声明 ③在方法中不能使用return语句返回一个值 ④在创建对象时,要调用new,如:book b1=new book() ...
- [Codeforces 1228E]Another Filling the Grid(组合数+容斥)
题目链接 解题思路: 容斥一下好久可以得到式子 \(\sum_{i=0}^{n}\sum_{j=0}^{n}(-1)^{i+j}C_n^iC_n^j(k-1)^{ni+nj-ij}k^{n^2-(ni ...
- SpringBoot图文教程「概念+案例 思维导图」「基础篇上」
有天上飞的概念,就要有落地的实现 概念+代码实现是本文的特点,教程将涵盖完整的图文教程,代码案例 每个知识点配套自测面试题,学完技术自我测试 本文初学向,所以希望文中所有的代码案例都能敲一遍 大哥大姐 ...
- LinearLayout中组件右对齐
在LinearLayout中,如果将其定位方向设为横向排列:android:orientation="horizontal",那么这个布局中的控件将自左向右排列. 但有时会有这样的 ...
- Angular 从入坑到挖坑 - Angular 使用入门
一.Overview angular 入坑记录的笔记第一篇,完成开发环境的搭建,以及如何通过 angular cli 来创建第一个 angular 应用.入坑一个多星期,通过学习官方文档以及手摸手的按 ...