zoukankan      html  css  js  c++  java
  • POJ 3352 无向图的双连通分量

    Road Construction
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 9426   Accepted: 4675

    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

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<cstdlib>
     5 #include<vector>
     6 #include<map>
     7 using namespace std;
     8 const int maxn=1007;
     9 int n,m,low[maxn],sum,degree[maxn],mp[maxn][maxn];
    10 vector<int> G[maxn];
    11 
    12 void dfs(int u,int fa)
    13 {
    14     int l=G[u].size();
    15     low[u]=sum++;
    16     for(int i=0;i<l;i++)
    17     {
    18         int v=G[u][i];
    19         if(v==fa) continue;
    20         if(!low[v]){
    21             dfs(v,u);
    22         }
    23         low[u]=min(low[u],low[v]);
    24     }
    25 }
    26 int tarjan()
    27 {
    28     for(int i=1;i<=n;i++)
    29     {
    30         for(int j=0;j<G[i].size();j++)
    31         {
    32             if(low[i]!=low[G[i][j]]) degree[low[i]]++;
    33         }
    34     }
    35     int res=0;
    36     for(int i=1;i<=n;i++)
    37         if(degree[i]==1) res++;
    38     return res;
    39 }
    40 int main()
    41 {
    42     int cnt=1,a,b;
    43     while(~scanf("%d%d",&n,&m)){
    44         memset(low,0,sizeof(low));
    45         memset(degree,0,sizeof(degree));
    46         memset(mp,0,sizeof(mp));
    47         for(int i=0;i<=n;i++) G[i].clear();
    48         for(int i=1;i<=m;i++)
    49         {
    50             scanf("%d%d",&a,&b);
    51             if(mp[a][b]>0) continue;
    52             mp[a][b]++;mp[b][a]++;
    53             G[a].push_back(b);G[b].push_back(a);
    54         }
    55         sum=1;
    56         dfs(1,-1);
    57         int ans=tarjan();
    58         printf("%d
    ",(ans+1)/2);
    59     }
    60     return 0;
    61 }
  • 相关阅读:
    Java消息队列
    SpringBoot使用Redis缓存
    SpringBoot缓存
    c++question 004 c++基本数据类型有哪些?
    谭浩强 c++程序设计第一章课后习题 第10题
    谭浩强 c++程序设计第一章课后习题 第7题
    servlet从服务器磁盘文件读出到浏览器显示,中文乱码问题,不要忘记在输入流和输出流都要设置编码格式,否则一个地方没设置不统一就会各种乱码
    response.setContentType("text/html;charset=utf-8")后依然乱码的解决方法
    换了台电脑tomcat自己运行没问题,eclipse中配置tomcat开启了浏览器却404错误解决
    Dynemic Web Project中使用servlet的 doGet()方法接收来自浏览器客户端发送的add学生信息形成json字符串输出到浏览器并保存到本地磁盘文件
  • 原文地址:https://www.cnblogs.com/codeyuan/p/4385330.html
Copyright © 2011-2022 走看看