POJ3352 Road Construction 双连通分量+缩点

Road Construction

Description

It's almost summer time, and that means that it's almost summer construction time! This year, the good people who are in charge of the roads on the tropical island paradise of Remote Island would like to repair and upgrade the various roads that lead between the various tourist attractions on the island.

The roads themselves are also rather interesting. Due to the strange customs of the island, the roads are arranged so that they never meet at intersections, but rather pass over or under each other using bridges and tunnels. In this way, each road runs between two specific tourist attractions, so that the tourists do not become irreparably lost.

Unfortunately, given the nature of the repairs and upgrades needed on each road, when the construction company works on a particular road, it is unusable in either direction. This could cause a problem if it becomes impossible to travel between two tourist attractions, even if the construction company works on only one road at any particular time.

So, the Road Department of Remote Island has decided to call upon your consulting services to help remedy this problem. It has been decided that new roads will have to be built between the various attractions in such a way that in the final configuration, if any one road is undergoing construction, it would still be possible to travel between any two tourist attractions using the remaining roads. Your task is to find the minimum number of new roads necessary.

Input

The first line of input will consist of positive integers n and r, separated by a space, where 3 ≤ n ≤ 1000 is the number of tourist attractions on the island, and 2 ≤ r ≤ 1000 is the number of roads. The tourist attractions are conveniently labelled from 1 to n. Each of the following r lines will consist of two integers, v and w, separated by a space, indicating that a road exists between the attractions labelled v and w. Note that you may travel in either direction down each road, and any pair of tourist attractions will have at most one road directly between them. Also, you are assured that in the current configuration, it is possible to travel between any two tourist attractions.

Output

One line, consisting of an integer, which gives the minimum number of roads that we need to add.

Sample Input

Sample Input 1
10 12
1 2
1 3
1 4
2 5
2 6
5 6
3 7
3 8
7 8
4 9
4 10
9 10

Sample Input 2
3 3
1 2
2 3
1 3

Sample Output

Output for Sample Input 1
2
Output for Sample Input 2
0

题意:一个连通的无向图,求至少需要添加几条边,能保证删除任意一条边,图仍然是连通的。

题解:一个连通的无向图,他的双连通分量中的任意两个点至少有两条路是连通的。也就是说要加最少的边使得图是双连通

 把一个连通分支缩成一个点,只要在各个缩点点之间再加上一条边就可以了。。

不难。。注意细节

#include<stdio.h>
#include <algorithm>
#include <string.h>
#define N 1005
#define mes(x) memset(x, 0, sizeof(x));
#define ll __int64
const long long mod = 1e9+7;
const int MAX = 0x7ffffff;
using namespace std;
struct ed{
    int to,next;
}edge[N*5];
int head[N];
int top, dfs_clock;
int fa[N], pre[N], low[N], out[N], dir[N];
void dfs(int u,int father){
    low[u] = pre[u] = dfs_clock++;
    for(int i = head[u];i != -1;i = edge[i].next){
        int v = edge[i].to;
        if(v == father) continue;
        if(!pre[v]){
            dfs(v,u);
            low[u] = min(low[u],low[v]);
        }
        else low[u] = min(low[u], pre[v]);
        }
}
void addedge(int u,int v){
    edge[top].to = v;
    edge[top].next = head[u];
    head[u] = top++;
}
int main()
{
    int n, m ,a, b, i, j,ans;
    while(~scanf("%d%d", &n, &m)){
        memset(head, -1, sizeof(head));
        memset(pre, 0, sizeof(pre));
        memset(out, 0, sizeof(out));
        memset(low, 0, sizeof(low));
        dfs_clock = 1;
        top = 0;
        for(i=0;i<m;i++){
            scanf("%d%d", &a, &b);
            addedge(a, b);
            addedge(b, a);
        }
        dfs(1,-1);
        for(i=1;i<=n;i++)
            for(j=head[i];j!=-1;j = edge[j].next)
                if(low[i]!=low[edge[j].to])
                    out[low[i]]++;
        ans = 0;
        for(i=1;i<=n;i++)
            if(out[i] == 1)
                ans++;
        printf("%d
", (ans+1)/2);
    }
    return 0;
}
/*
10 12
1 2
1 3
1 4
2 5
2 6
5 6
3 7
3 8
7 8
4 9
4 10
9 10
*/ 
原文地址:https://www.cnblogs.com/Noevon/p/6290145.html