博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
算法笔记_150:图论之双连通及桥的应用(Java)
阅读量:6909 次
发布时间:2019-06-27

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

目录

 


1 问题描述

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.

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.

Output

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

Sample Input

7 71 22 33 42 54 55 65 7

Sample Output

2

Hint

Explanation of the sample: 
One visualization of the paths is: 
1   2   3    +---+---+         |   |        |   |  6 +---+---+ 4       / 5      /     /  7 +
Building new paths from 1 to 6 and from 4 to 7 satisfies the conditions. 
1   2   3    +---+---+     :   |   |    :   |   |  6 +---+---+ 4       / 5  :      /     :     /      :  7 + - - - -
Check some of the routes: 
1 – 2: 1 –> 2 and 1 –> 6 –> 5 –> 2 
1 – 4: 1 –> 2 –> 3 –> 4 and 1 –> 6 –> 5 –> 4 
3 – 7: 3 –> 4 –> 7 and 3 –> 2 –> 5 –> 7 
Every pair of fields is, in fact, connected by two routes. 
It's possible that adding some other path will also solve the problem (like one from 6 to 7). Adding two paths, however, is the minimum.

Source

 
题目链接:

 

 


2 解决方案

具体代码如下:

 

package com.liuzhen.practice;import java.util.ArrayList;import java.util.Scanner;import java.util.Stack;public class Main {    public static int n;  //给定图的顶点数    public static int count;  //记录遍历次序    public static int[] DFN;    public static int[] Low;    public static int[] parent;   //parent[i] = j,表示顶点i的直接父母顶点为j    public static Stack
stack; public static ArrayList
[] map; public static ArrayList
ans; //存储给定图中为桥的边 static class edge { public int a; //边的起点 public int b; //边的终点 public boolean used; //表示边是否已被访问 public edge(int a, int b) { this.a = a; this.b = b; this.used = false; } } @SuppressWarnings("unchecked") public void init() { count = 0; DFN = new int[n + 1]; Low = new int[n + 1]; parent = new int[n + 1]; stack = new Stack
(); map = new ArrayList[n + 1]; ans = new ArrayList
(); for(int i = 1;i <= n;i++) { DFN[i] = -1; Low[i] = -1; parent[i] = -1; map[i] = new ArrayList
(); } } public void TarJan(int start, int father) { DFN[start] = count++; Low[start] = DFN[start]; parent[start] = father; stack.push(start); for(int i = 0;i < map[start].size();i++) { edge temp = map[start].get(i); if(temp.used) continue; int t = temp.b; for(int p = 0;p < map[t].size();p++) { if(map[t].get(p).b == temp.a) { map[t].get(p).used = true; break; } } temp.used = true; int j = temp.b; if(DFN[j] == -1) { TarJan(j, start); Low[start] = Math.min(Low[start], Low[j]); if(Low[j] > DFN[start]) //当边temp为割边(或者桥)时 ans.add(temp); } else if(j != parent[start]) { //当j不是start的直接父母节点时 Low[start] = Math.min(Low[start], DFN[j]); } } } public void getResult() { for(int i = 1;i <= n;i++) { if(parent[i] == -1) TarJan(i, 0); } int[] degree = new int[n + 1]; for(int i = 0;i < ans.size();i++) { int a = ans.get(i).a; int b = ans.get(i).b; degree[a]++; degree[b]++; } int result = 0; for(int i = 1;i <= n;i++) { if(degree[i] == 1) result++; } result = (result + 1) / 2; System.out.println(result); return; } public static void main(String[] args) { Main test = new Main(); Scanner in = new Scanner(System.in); n = in.nextInt(); int m = in.nextInt(); test.init(); for(int i = 0;i < m;i++) { int a = in.nextInt(); int b = in.nextInt(); map[a].add(new edge(a, b)); map[b].add(new edge(b, a)); } test.getResult(); }}

 

 

 

运行结果:

7 71 22 33 42 54 55 65 72

 

 

 

 

 

参考资料:

   1.

    2. 

 

转载地址:http://eogdl.baihongyu.com/

你可能感兴趣的文章
mysql索引之四:复合索引之最左前缀原理,索引选择性,索引优化策略之前缀索引...
查看>>
js+css实现模态层效果
查看>>
24点游戏&&速算24点(dfs)
查看>>
链接(extern、static关键词\头文件\静态库\共享库)
查看>>
Android 自定义PopupWindow动画效果
查看>>
转自:如何自学Android(强烈推荐)
查看>>
python2.0_s12_day9之day8遗留知识(queue队列&生产者消费者模型)
查看>>
sql server 2012 删除服务器名称
查看>>
ortp库入门
查看>>
iOS - UIImageView
查看>>
java23种设计模式
查看>>
App你真的需要么
查看>>
【结巴分词资料汇编】结巴中文分词基本操作(3)
查看>>
构建镜像 - 每天5分钟玩转容器技术(12)
查看>>
POJ1833 &amp; POJ3187 &amp; POJ3785 next_permutation应用
查看>>
嵌入式 Linux 如何操作 GPIO ?
查看>>
XUnit 依赖注入
查看>>
【C013】ArcPy - 入门学习
查看>>
有关流量的那点事儿
查看>>
C#.NET学习笔记1---C#.NET简介
查看>>