HDU4612-Warm up(无向图强连通分量缩点)

来源:互联网 发布:高仿二代身份证 淘宝 编辑:程序博客网 时间:2024/05/21 09:49

Warm up

                                                                           Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)
                                                                                                         Total Submission(s): 6490    Accepted Submission(s): 1487


Problem Description
  N planets are connected by M bidirectional channels that allow instant transportation. It's always possible to travel between any two planets through these channels.
  If we can isolate some planets from others by breaking only one channel , the channel is called a bridge of the transportation system.
People don't like to be isolated. So they ask what's the minimal number of bridges they can have if they decide to build a new channel.
  Note that there could be more than one channel between two planets.
 

Input
  The input contains multiple cases.
  Each case starts with two positive integers N and M , indicating the number of planets and the number of channels.
  (2<=N<=200000, 1<=M<=1000000)
  Next M lines each contains two positive integers A and B, indicating a channel between planet A and B in the system. Planets are numbered by 1..N.
  A line with two integers '0' terminates the input.
 

Output
  For each case, output the minimal number of bridges after building a new channel in a line.
 

Sample Input
4 41 21 31 42 30 0
 

Sample Output
0
 

Author
SYSU
 

Source
2013 Multi-University Training Contest 2
 

Recommend
zhuyuanchen520
 

题意:有n个点,m条无向边,问加一条边,最少可以剩下几个桥

解题思路:先双连通分量缩点,形成一颗树,然后求树的直径,就是减少的桥


#include <iostream>#include <cstdio>#include <string>#include <cstring>#include <algorithm>#include <cmath>#include <vector>#include <map>#include <set>#include <queue>#include <stack>#include <functional>#include <climits>using namespace std;#define LL long longconst int INF=0x3f3f3f3f;const int N=200010;const int M=1000010;struct Edge{    int v,nt,flag;} edge[M<<2];int s[N],cnt;int n,m;int dfn[N],low[N],dep,vis[N];int id[N],res;bool instack[N];int nbridge,bridge[M][2];int maxlen;stack<int>st;void AddEdge(int u,int v){    edge[cnt].v=v;    edge[cnt].nt=s[u];    edge[cnt].flag=1;    s[u]=cnt++;    edge[cnt].v=u;    edge[cnt].nt=s[v];    edge[cnt].flag=1;    s[v]=cnt++;}void tarjan(int u,int pre)  // 无向图,数据有回边.需要将其看做不同边.且边需要标记...{    vis[u]=true;    dfn[u]=low[u]=++dep;    st.push(u);    instack[u]=true;    for(int i=s[u]; ~i; i=edge[i].nt)    {        int v=edge[i].v;        if(edge[i].flag==false) continue;        edge[i].flag=edge[i^1].flag=false;        if(!vis[v])        {            tarjan(v,u);            low[u]=min(low[u],low[v]);            if(dfn[u]<low[v])            {                bridge[nbridge][0]=u;                bridge[nbridge++][1]=v;            }        }        else if(instack[v]) low[u]=min(low[u],dfn[v]);    }    if(dfn[u]==low[u])    {        int t;        do        {            id[t=st.top()]=res;            st.pop();            instack[t]=false;        }        while(t!=u);        res++;    }}int dfs(int u,int pre){    int tmp=0;    for(int i=s[u];~i;i=edge[i].nt)    {        int v=edge[i].v;        if(v==pre) continue;        int d=dfs(v,u);        maxlen=max(maxlen,tmp+d);        tmp=max(tmp,d);    }    return tmp+1;}int main(){    while(~scanf("%d%d",&n,&m)&&(n+m))    {        memset(s,-1,sizeof s);        cnt=0;        for(int i=0; i<m; i++)        {            int u,v;            scanf("%d%d",&u,&v);            AddEdge(u,v);        }        memset(vis,0,sizeof vis);        memset(instack,0,sizeof instack);        nbridge=0,res=0,dep=0;        while(!st.empty()) st.pop();        for(int i=1; i<=n; i++)            if(!vis[i]) tarjan(i,0);        // Debug        /* for(int i = 1; i <= n; i++)             printf("dfn[%d] = %d, low[%d] = %d\n", i,dfn[i], i,low[i]);         for(int i = 1; i <= n; i++)             printf("id[%d] = %d\n", i, id[i] );*/        memset(s,-1,sizeof s);        cnt=0;        for(int i=0;i<nbridge;i++)        {            int u=id[bridge[i][0]],v=id[bridge[i][1]];            AddEdge(u,v);        }        maxlen=0;        dfs(0,-1);        printf("%d\n",res-1-maxlen);    }    return 0;}

0 0
原创粉丝点击