tarjan求边双连通分量, 然后就是一棵树了, 可以各种乱搞...

-------------------------------------------------------------------------------

#include<cstdio>
#include<cstring>
#include<algorithm>
 
using namespace std;
 
const int maxn = 5009;
 
struct edge {
int to;
bool t;
edge* next;
} E[20009], *pt = E, *head[maxn];
 
void add(int u, int v) {
pt->to = v; pt->next = head[u]; head[u] = pt++;
}
void addedge(int u, int v) {
add(u, v); add(v, u);
}
 
edge* rev(edge* e) {
return E + ((e - E) ^ 1);
}
 
int Id(edge* e) {
return (e - E) >> 1;
}
 
int dfn[maxn], low[maxn], cc[maxn];
int N, CK = 0, n = 0, ans = 0;
bool B[maxn], vis[maxn];
 
void init() {
int m;
scanf("%d%d", &N, &m);
while(m--) {
int u, v; scanf("%d%d", &u, &v);
addedge(--u, --v);
}
}
 
void tarjan(int x, edge* r = NULL) {
dfn[x] = low[x] = ++CK;
for(edge* e = head[x]; e; e = e->next) if(e != r) {
if(!dfn[e->to]) {
tarjan(e->to, rev(e));
if(low[e->to] > dfn[x]) 
B[Id(e)] = true;
else
low[x] = min(low[e->to], low[x]);
} else 
low[x] = min(low[x], dfn[e->to]);
}
}
 
void dfs(int x, edge* r = NULL) {
vis[x] = true;
cc[x] = n;
for(edge* e = head[x]; e; e = e->next) 
if(!vis[e->to] && e != r && !B[Id(e)]) dfs(e->to, rev(e));
}
 
namespace tree {
edge E[20009], *head[maxn], *pt = E;
void addedge(int u, int v) {
pt->to = v; pt->next = head[u]; head[u] = pt++;
}
void dfs(int x, int fa = -1) {
int ch = 0;
for(edge* e = head[x]; e; e = e->next)
if(e->to != fa) ch++, dfs(e->to, x);
if(!ch || (!~fa && ch == 1)) ans++;
}
}
 
void work() {
memset(dfn, 0, sizeof dfn);
memset(vis, 0, sizeof vis);
memset(B, 0, sizeof B);
for(int i = 0; i < N; i++) if(!dfn[i]) tarjan(i);
for(int i = 0; i < N; i++)
if(!vis[i]) dfs(i), n++;
if(n == 1) {
puts("0");
return;
}
for(int x = 0; x < N; x++)
for(edge* e = head[x]; e; e = e->next)
if(cc[x] != cc[e->to]) tree::addedge(cc[x], cc[e->to]);
tree::dfs(0);
printf("%d\n", (++ans) >> 1);
}
 
int main() {
init();
work();
return 0;
}

-------------------------------------------------------------------------------

1718: [Usaco2006 Jan] Redundant Paths 分离的路径

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 281  Solved: 151
[Submit][Status][Discuss]

Description

In order to get from one of the F (1 <= F <= 5,000) grazing fields (which are numbered 1..F) to another field, Bessie and the rest of the herd are forced to cross near the Tree of Rotten Apples. The cows are now tired of often being forced to take a particular path and want to build some new paths so that they will always have a choice of at least two separate routes between any pair of fields. They currently have at least one route between each pair of fields and want to have at least two. Of course, they can only travel on Official Paths when they move from one field to another. Given a description of the current set of R (F-1 <= R <= 10,000) paths that each connect exactly two different fields, determine the minimum number of new paths (each of which connects exactly two fields) that must be built so that there are at least two separate routes between any pair of fields. Routes are considered separate if they use none of the same paths, even if they visit the same intermediate field along the way. There might already be more than one paths between the same pair of fields, and you may also build a new path that connects the same fields as some other path.

    为了从F(1≤F≤5000)个草场中的一个走到另一个,贝茜和她的同伴们有时不得不路过一些她们讨厌的可怕的树.奶牛们已经厌倦了被迫走某一条路,所以她们想建一些新路,使每一对草场之间都会至少有两条相互分离的路径,这样她们就有多一些选择.
    每对草场之间已经有至少一条路径.给出所有R(F-1≤R≤10000)条双向路的描述,每条路连接了两个不同的草场,请计算最少的新建道路的数量, 路径由若干道路首尾相连而成.两条路径相互分离,是指两条路径没有一条重合的道路.但是,两条分离的路径上可以有一些相同的草场. 对于同一对草场之间,可能已经有两条不同的道路,你也可以在它们之间再建一条道路,作为另一条不同的道路.

Input

* Line 1: Two space-separated integers: F and R * Lines 2..R+1: Each line contains two space-separated integers which are the fields at the endpoints of some path.

    第1行输入F和R,接下来R行,每行输入两个整数,表示两个草场,它们之间有一条道路.

Output

* Line 1: A single integer that is the number of new paths that must be built.

    最少的需要新建的道路数.

Sample Input

7 7
1 2
2 3
3 4
2 5
4 5
5 6
5 7

Sample Output

2

HINT

Source

BZOJ 1718: [Usaco2006 Jan] Redundant Paths 分离的路径( tarjan )的更多相关文章

  1. BZOJ 1718: [Usaco2006 Jan] Redundant Paths 分离的路径

    Description 给出一个无向图,求将他构造成双连通图所需加的最少边数. Sol Tarjan求割边+缩点. 求出割边,然后缩点. 将双连通分量缩成一个点,然后重建图,建出来的就是一棵树,因为每 ...

  2. bzoj 1718: [Usaco2006 Jan] Redundant Paths 分离的路径【tarjan】

    首先来分析一下,这是一张无向图,要求没有两条路联通的点对个数 有两条路连通,无向图,也就是说,问题转化为不在一个点双连通分量里的点对个数 tarjan即可,和求scc还不太一样-- #include& ...

  3. 【BZOJ】1718: [Usaco2006 Jan] Redundant Paths 分离的路径

    [题意]给定无向连通图,要求添加最少的边使全图变成边双连通分量. [算法]Tarjan缩点 [题解]首先边双缩点,得到一棵树(无向无环图). 入度为1的点就是叶子,两个LCA为根的叶子间合并最高效,直 ...

  4. [Usaco2006 Jan] Redundant Paths 分离的路径

    1718: [Usaco2006 Jan] Redundant Paths 分离的路径 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 1132  Solv ...

  5. [BZOJ1718]:[Usaco2006 Jan] Redundant Paths 分离的路径(塔尖)

    题目传送门 题目描述 为了从F个草场中的一个走到另一个,贝茜和她的同伴们有时不得不路过一些她们讨厌的可怕的树.奶牛们已经厌倦了被迫走某一条路,所以她们想建一些新路,使每一对草场之间都会至少有两条相互分 ...

  6. BZOJ1718 [Usaco2006 Jan] Redundant Paths 分离的路径

    给你一个无向图,问至少加几条边可以使整个图变成一个双联通分量 简单图论练习= = 先缩点,ans = (度数为1的点的个数) / 2 这不是很好想的么QAQ 然后注意位运算的优先级啊魂淡!!!你个sb ...

  7. BZOJ1718: [Usaco2006 Jan] Redundant Paths 分离的路径【边双模板】【傻逼题】

    LINK 经典傻逼套路 就是把所有边双缩点之后叶子节点的个数 //Author: dream_maker #include<bits/stdc++.h> using namespace s ...

  8. 【bzoj1718】Redundant Paths 分离的路径

    1718: [Usaco2006 Jan] Redundant Paths 分离的路径 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 964  Solve ...

  9. Redundant Paths 分离的路径【边双连通分量】

    Redundant Paths 分离的路径 题目描述 In order to get from one of the F (1 <= F <= 5,000) grazing fields ...

随机推荐

  1. Making your first driver - complete walkthrough(使用VisualDDK)

    This article describes how to create, build and debug your first driver using Visual Studio and Visu ...

  2. Struts 和Spring的核心控制器

    Struts 核心控制器是FilterDispatch Spring核心控制器是DispatchServlet

  3. LINQ to SQL的CRUD操作

    创建数据对象模型 sqlmetal /code:"C:\MyProjects\VS2008\Data\LinqConsoleApp2\LinqConsoleApp2\northwnd.cs& ...

  4. JAVA訪问URL

    JAVA訪问URL: package Test; import java.io.BufferedReader; import java.io.IOException; import java.io.I ...

  5. docker进入容器

    进入容器的三种方式: sshd nsenter exec sshd 在容器中开启一个SSHD的服务,通过SSH的协议登录到容器中,把容器看出一个vm nsenter: nsenter包含在util-l ...

  6. linux 下手动编译安装无线网卡驱动

    先参照 <本地yum源安装GCC >安装好gcc hp的笔记本上安装了CentOS6.3,没有安装无线网卡驱动,安装这个驱动,在Google上找了好多资料,最后终于解决了这个问题.在这里做 ...

  7. C# DateTime.Now 用法小记

    1.DateTime.Now   获取时间跟系统当前时间一直并且格式一直,如系统时间带有星期几,获取的时间也会带有 2,以下为拷贝前人总结的: //2008年4月24日 System.DateTime ...

  8. FMDB 直接将查询结果转化为字典

    今天学习FMDB框架,发现非常好用的一点,就是就以把查询结果直接转化为字典 NSString *querySql = @"select * from stuInfo"; NSMut ...

  9. C++如何将一个整数输出为小数

    double a=3;                      //一定是double不能是int cout.setf(ios::fixed); cout.precision(2); cout< ...

  10. 加装 ImageMagick 性能更佳!

    1. 下载 Download ImageMagick 以此文件ImageMagick-6.9.1-10-Q16-x64-dll-win进行,第二次开发的研发 2. 安装 Install ImageMa ...