poj 3352 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<map>
#include<set>
#include<stack>
#include<queue>
#include<cmath>
#include<vector>
#include<cstdio>
#include<string>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#define  inf 0x0f0f0f0f
using namespace std;

int degree[5000+10];

struct CUT_E
{
    static const int maxn=5000+10;
    int low[maxn],pre[maxn],dfs_clock,n,m,sumcut;
    int cut_edge[maxn][maxn];
    vector<int>group[maxn];

    void init()
    {
        for (int i=0;i<=n;i++)
        {
            group[i].clear();
            for (int j=0;j<=n;j++)
            cut_edge[i][j]=0;
        }
        sumcut=0; dfs_clock=0;
    }

    void addedge(int u,int v)
    {
        group[u].push_back(v);
        group[v].push_back(u);
    }

    int dfs(int u,int fa)
    {
        int lowu=pre[u]=++dfs_clock;
        for (int i=0;i<group[u].size();i++)
        {
            int v=group[u][i];
            if (!pre[v])
            {
                int lowv=dfs(v,u);
                lowu=min(lowu,lowv);
                if (lowv>pre[u]) {cut_edge[u][v]=1;cut_edge[v][u]=1;}
            }
            else if (pre[v]<pre[u] && v!=fa) lowu=min(lowu,pre[v]);
        }
        low[u]=lowu;
        return lowu;
    }

    int get_sum()
    {
        int ans=dfs(-1,1);
        for (int i=1;i<=n;i++)
        for (int j=1;j<=n;j++)
        if (cut_edge[i][j]) sumcut++;
        return sumcut;
    }
};
CUT_E stable;

void update()
{
    for (int i=0;i<=stable.n;i++) stable.group[i].clear();
    for (int i=1;i<=stable.n;i++)
    for (int j=1;j<=stable.n;j++)
    if (stable.cut_edge[i][j]==2) {
        stable.group[i].push_back(j);
        stable.group[j].push_back(i);
    }
}

bool vis[5000+10];
int p[5000+10];
void DFS(int u,int fa)
{
    p[u]=fa;
    for (int i=0;i<stable.group[u].size();i++)
    {
        int v=stable.group[u][i];
        if(!vis[v])
        {
            vis[v]=true;
            DFS(v,fa);
        }
    }
}


void solve()
{
    for (int i=1;i<=stable.n;i++)
    for (int j=1;j<=stable.n;j++)
    if (stable.cut_edge[i][j]==1)
    {
        int x=p[i];
        int y=p[j];
        degree[x]++;
        degree[y]++;
    }
}

int find_leaf()
{
    int ans=0;
    for (int i=1;i<=stable.n;i++)
    if (degree[i]==2) ans++;
    return ans;
}

int main()
{
    //freopen("in.txt","r",stdin);
    char str[1000];
    int f,r,x,y;
    while (scanf("%d%d",&f,&r)!=EOF)
    {
        stable.n=f; stable.m=r;
        stable.init();
        for (int i=1;i<=r;i++)
        {
            scanf("%d%d",&x,&y);
            stable.addedge(x,y);
            stable.cut_edge[x][y]=2;
            stable.cut_edge[y][x]=2;
        }
        int temp=stable.dfs(1,-1);//求割边
        update();//去掉割边,更新图
        memset(vis,0,sizeof(vis));vis[1]=true;
        for (int i=1;i<=f;i++)//找出每一个连通快,缩点
        if (!vis[i] || i==1)DFS(i,i);
        memset(degree,0,sizeof(degree));
        solve();
        int leaf=find_leaf();//找度为一的节点
        printf("%d
",(leaf+1)/2);
    }
    return 0;
}
至少做到我努力了
原文地址:https://www.cnblogs.com/chensunrise/p/3735574.html