题目描述

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)条双向路的描述,每条路连接了两个不同的草场,请计算最少的新建道路的数量, 路径由若干道路首尾相连而成.两条路径相互分离,是指两条路径没有一条重合的道路.但是,两条分离的路径上可以有一些相同的草场. 对于同一对草场之间,可能已经有两条不同的道路,你也可以在它们之间再建一条道路,作为另一条不同的道路.

输入输出格式

输入格式:

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.

输出格式:

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

题目解析

先缩一下边双联通分量,就变成了一棵树。

显然,可以贪心的把度数为1的点连起来。

ans = 度数为1的点数量/2 向上取整。

因惰于判重,特判之。

Code

#include<iostream>
#include<cstdio>
#include<stack>
using namespace std; const int MAXN = + ;
const int MAXM = + ; struct Edge {
int nxt;
int to,from;
} l[MAXM<<]; int n,m;
int head[MAXN],cnt;
int low[MAXN],dfn[MAXN];
int index[MAXN],col[MAXN];
int tot,stamp,ans;
bool in[MAXN]; stack<int> S; inline void add(int x,int y) {
cnt++;
l[cnt].nxt = head[x];
l[cnt].to = y;
l[cnt].from = x;
head[x] = cnt;
return;
} void tarjan(int x,int from) {
low[x] = dfn[x] = ++stamp;
in[x] = true;
S.push(x);
for(int i = head[x];i;i = l[i].nxt) {
if(l[i].to == from) continue;
if(!dfn[l[i].to]) {
tarjan(l[i].to,x);
low[x] = min(low[x],low[l[i].to]);
} else if(in[l[i].to]) low[x] = min(low[x],dfn[l[i].to]);
}
if(dfn[x] == low[x]) {
tot++;
while(S.top() != x) {
col[S.top()] = tot;
in[S.top()] = false;
S.pop();
}
col[x] = tot;
in[x] = false;
S.pop();
}
return;
} int main() {
scanf("%d%d",&n,&m);
if(n == && m == ) {
puts("");
return ;
}
int x,y;
for(int i = ;i <= m;i++) {
scanf("%d%d",&x,&y);
add(x,y),add(y,x);
}
for(int i = ;i <= n;i++) {
if(!dfn[i]) tarjan(i,);
}
for(int i = ;i <= *m;i+=) {
if(col[l[i].to] == col[l[i].from]) continue;
else index[col[l[i].to]]++,index[col[l[i].from]]++;
}
for(int i = ;i <= tot;i++) {
if(index[i] == ) ans++;
}
printf("%d\n",(ans+)/);
return ;
}

最新文章

  1. 当你在浏览器地址栏输入一个URL后回车,将会发生的事情?
  2. C#反射机制 Type类型
  3. The Swift Programming Language 中文翻译版(个人翻新随时跟新)
  4. FFMPEG ./configure 参数及意义
  5. 扩展Date的DateAdd方法--计算日期
  6. c++对象内存布局
  7. WinForm实现简单的拖拽功能(C#)
  8. RDLC添加链接
  9. java集合类深入分析之Queue篇(Q,DQ)
  10. xml:Invalid byte 2 of 2-byte UTF-8 sequence
  11. Unity插件之NGUI学习(8)—— Table和NGUI尺寸转换为世界坐标系尺寸
  12. mysql 创建数据 utf8
  13. oracle系列笔记(2)---多表查询
  14. iOS 网络编程模式总结
  15. PHP中的__call和__callStatic方法
  16. 将数据以json字符串格式传到前台请求页面
  17. MyBatis高级映射查询(3)
  18. LeetCode Generate Parentheses (DFS)
  19. java自定义注解学习(二)_注解详解
  20. 微软发布TFS 2018!

热门文章

  1. JMeter快捷键图标制作 去掉cmd命令窗口
  2. 安装完Anaconda python 3.7,想使用python3.6方法
  3. IDEA中Spark往Hbase中写数据
  4. Spring MVC标签&lt;mvc: annotation-driven /&gt;小结 原
  5. C#面向过程之编译原理、变量、运算符
  6. MogileFS介绍
  7. win7安装oracle
  8. React实战之Ant Design—Upload上传_附件上传
  9. php 报错如下:Notice: Trying to get property of non-object
  10. LeetCode 要记得一些小trick