zoukankan      html  css  js  c++  java
  • poj 3352 tarjan边双联通分量

    Road Construction
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 7370   Accepted: 3694

    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
    

    Source

     
    与poj 3177相同,代码:
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<vector>
    #include<set>
    #include<queue>
    #include<string>
    #include<cmath>
    #include<fstream>
    #include<iomanip>
    #include<climits>
    #include<cfloat>
    
    using namespace std;
    
    #define MAX_INT 0x7fffffff
    #define MAX_LL 0x7fffffffffffffff
    #define ULL unsigned long long
    #define LL long long
    #define MAX(x,y) ((x) > (y) ? (x) : (y))
    #define MIN(x,y) ((x) < (y) ? (x) : (y))
    
    #define MAXN 1111
    #define MAXM 2222
    struct edge{
        int u, v, nxt;
        int re;
    }e[MAXM];
    int h[MAXN],cc;
    int cnt,tsp,top;
    int s[MAXN],id[MAXN],dfn[MAXN];
    int vis[MAXM],low[MAXN];
    
    inline void add(int u, int v, int f){
        e[cc]=(edge){u, v, h[u], cc+f};
        h[u]=cc++;
    }
    
    void tarjan(int u){
        int i,v;
        dfn[u]=low[u]=++tsp;
        s[top++]=u;
        for(i=h[u]; i!=-1; i=e[i].nxt){
            v=e[i].v;
            if(!dfn[v]){
                vis[e[i].re]=1;
                tarjan(v);
                low[u]=MIN(low[u], low[v]);
            }
            else if(!vis[i]) low[u]=MIN(low[u], dfn[v]);        //回边不是反向边,且该点:dfn[v] == low[v]
        }
        if(low[u] == dfn[u]){
            cnt++;
            do{
                v=s[--top];
                id[v]=cnt;              //缩点
            }while(v!=u);
        }
    }
    
    int degree[MAXN];
    int solve(int n){
        cnt=tsp=top=0;
        memset(dfn+1, 0, sizeof(int)*n);
        memset(vis, 0, sizeof(int)*cc);
        tarjan(1);
    
        memset(degree+1, 0, sizeof(int)*cnt);
        for(int i=0; i<cc; i++){
            int u=id[e[i].u], v=id[e[i].v];
            if(u!=v) degree[u]++;
        }
        int ans=0;
        for(int i=1; i<=cnt; i++) if(degree[i]==1)
            ans++;
        return ans+1>>1;
    }
    
    int main(){
        //freopen("C:\Users\Administrator\Desktop\in.txt","r",stdin);
        int n,m;
        while(scanf(" %d %d",&n, &m)==2){
            int i, u, v;
            memset(h+1, -1, sizeof(int)*n);       cc=0;
            for(i=0; i<m; i++){
                scanf(" %d %d",&u, &v);
                u, v;
                add(u, v, 1);      add(v, u, -1);
            }
            int ans=solve(n);
            printf("%d
    ",ans);
        }
        return 0;
    }
    View Code
  • 相关阅读:
    DNS原理总结及其解析过程详解
    linux修改进程名
    mq_open失败,Invalid argument
    Posix消息队列
    undefined reference to 'mq_open'
    量化投资学习笔记08——统计学基础补漏
    量化投资学习笔记07——python知识补漏
    量化投资学习笔记06——《打开量化投资的黑箱》读书笔记
    量化投资学习笔记05——检验计算回测指标程序
    量化投资学习笔记04——回测实盘策略
  • 原文地址:https://www.cnblogs.com/ramanujan/p/3294122.html
Copyright © 2011-2022 走看看