POJ 3177 Redundant Paths)

Source: Internet
Author: User
Tags bitset

POJ 3177 Redundant Paths)

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 particle 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

USACO 2006 January Gold

Add the least edge to the diagram

To convert a bridge-connected Unicom diagram Into a dual-connected diagram, we must first compress the dual-connected subgraph to make it a tree (without loops)
Find out the number of adding edges (leaf + 1)/2 for the leaf node (1 in the input degree) of the tree;

# Include
 
  
# Include
  
   
# Include
   
    
# Include
    
     
# Include
     
      
# Include
      
        # Include
       
         # Include
        # Include
         
           # Include
          
            Using namespace std; # define REPF (I, a, B) for (int I = a; I <= B; ++ I) # define REP (I, n) for (int I = 0; I <n; ++ I) # define CLEAR (a, x) memset (a, x, sizeof a) typedef long LL; typedef pair
           
             Pil; const int maxn = 5000 + 10; const int maxm = 10000 + 10; struct node {int to, next; bool col; //} e [maxm]; int head [maxn], cnt; int DFN [maxn], low [maxn]; int s [maxn], instack [maxn]; int idex, top, bridge; int belong [maxn], in [maxn]; int n, m; void init () {cnt = top = idex = bridge = 0; CLEAR (head,-1 ); CLEAR (DFN, 0); CLEAR (low, 0); CLEAR (instack, 0); CLEAR (belong, 0); CLEAR (in, 0 );} void addedge (int u, int v) {e [cnt]. to = v; e [cnt]. next = Head [u]; e [cnt]. col = false; head [u] = cnt ++;} void Tarjan (int u, int pre) {int v; low [u] = DFN [u] = ++ idex; s [top ++] = u; instack [u] = 1; for (int I = head [u]; i! =-1; I = e [I]. next) {v = e [I]. to; if (v = pre) continue; if (! DFN [v]) {Tarjan (v, u); if (low [u]> low [v]) low [u] = low [v]; if (low [v]> DFN [u]) // bridge {bridge ++; e [I]. col = true; e [I ^ 1]. col = true ;}} else if (instack [v] & low [u]> DFN [v]) low [u] = DFN [v];} if (low [u] = DFN [u]) {cnt ++; do {v = s [-- top]; instack [v] = 0; belong [v] = cnt;} while (v! = U) ;}} void work () {REPF (I, 1, n) if (! DFN [I]) Tarjan (I, I); for (int I = 1; I <= n; I ++) {for (int j = head [I]; j! =-1; j = e [j]. next) if (e [j]. col) in [belong [I] ++;} int ans = 0; REPF (I, 1, cnt) if (in [I] = 1) ans ++; printf ("% d \ n", (ans + 1)/2);} int main () {int u, v; while (~ Scanf ("% d", & n, & m) {init (); REPF (I, 1, m) {scanf ("% d ", & u, & v); addedge (u, v); addedge (v, u);} work () ;}return 0 ;}
           
          
         
       
      
     
    
   
  
 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.