博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
无向图求桥 UVA 796
阅读量:5098 次
发布时间:2019-06-13

本文共 778 字,大约阅读时间需要 2 分钟。

***桥的概念:无向连通图中,如果删除某边后,图变 成不连通,则称该边为桥。***

***一条边(u,v)是桥,当且仅当(u,v)为树枝边,且 满足dfn(u)<low(v)(前提是其没有重边),非树枝边不可 能是桥

题目链接:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=122091#problem/C***

***在这里还用了vector来保存一个图,这样会省去很大的空间***

#include
#include
#include
#include
#include
#include
#include
using namespace std;#define N 100005int n, m;int dfn[N], low[N], Father[N];int Time;vector
> G;struct node{ int x, y;}bridge[N];int cmp(node a, node b){ if(a.x!=b.x) return a.x
bridge[ans].y) swap(bridge[ans].x, bridge[ans].y); ans++; } } sort(bridge, bridge+ans, cmp); printf("%d critical links\n", ans); for(int i=0; i

 

转载于:https://www.cnblogs.com/9968jie/p/5671011.html

你可能感兴趣的文章
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
在centos上开关tomcat
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>
ionic2+ 基础
查看>>
[leetcode]Minimum Path Sum
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Screening technology proved cost effective deal
查看>>
mysql8.0.13下载与安装图文教程
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
【2.2】创建博客文章模型
查看>>
Kotlin动态图
查看>>
从零开始系列之vue全家桶(1)安装前期准备nodejs+cnpm+webpack+vue-cli+vue-router
查看>>
Jsp抓取页面内容
查看>>