• ZOJ 2588 Burning Bridges


    Time Limit: 5 Seconds      Memory Limit: 32768 KB

    Ferry Kingdom is a nice little country located on N islands that are connected by M bridges. All bridges are very beautiful and are loved by everyone in the kingdom. Of course, the system of bridges is designed in such a way that one can get from any island to any other one.

    But recently the great sorrow has come to the kingdom. Ferry Kingdom was conquered by the armies of the great warrior Jordan and he has decided to burn all the bridges that connected the islands. This was a very cruel decision, but the wizards of Jordan have advised him no to do so, because after that his own armies would not be able to get from one island to another. So Jordan decided to burn as many bridges as possible so that is was still possible for his armies to get from any island to any other one.

    Now the poor people of Ferry Kingdom wonder what bridges will be burned. Of course, they cannot learn that, because the list of bridges to be burned is kept in great secret. However, one old man said that you can help them to find the set of bridges that certainly will not be burned.

    So they came to you and asked for help. Can you do that?

    Input

    The input contains multiple test cases. The first line of the input is a single integer T (1 <= T <= 20) which is the number of test cases. T test cases follow, each preceded by a single blank line.

    The first line of each case contains N and M - the number of islands and bridges in Ferry Kingdom respectively (2 <= N <= 10 000, 1 <= M <= 100 000). Next M lines contain two different integer numbers each and describe bridges. Note that there can be several bridges between a pair of islands.

    Output

    On the first line of each case print K - the number of bridges that will certainly not be burned. On the second line print K integers - the numbers of these bridges. Bridges are numbered starting from one, as they are given in the input.

    Two consecutive cases should be separated by a single blank line. No blank line should be produced after the last test case.

    Sample Input

    2
    
    6 7
    1 2
    2 3
    2 4
    5 4
    1 3
    4 5
    3 6
    
    10 16
    2 6
    3 7
    6 5
    5 9
    5 4
    1 2
    9 8
    6 4
    2 10
    3 8
    7 9
    1 4
    2 4
    10 5
    1 6
    6 10
    

    Sample Output

    2
    3 7
    
    1
    4 
    

    Author: Andrew Stankevich
    Source: Andrew Stankevich's Contest #5

    裸Tarjan求割边

    注意输出格式,注意判重。

    屠龙宝刀点击就送

    #include <algorithm>
    #include <cstring>
    #include <cstdio>
    #define N 10005
    using namespace std;
    struct Edge
    {
        int id,to,next;
        bool flag;
    }edge[N*20];
    int ans[N],num,T,cnt,low[N],dfn[N],tim,head[N];
    void init()
    {
        cnt=1;
        tim=num=0;
        memset(low,0,sizeof(low));
        memset(dfn,0,sizeof(dfn));
        memset(head,0,sizeof(head));
    }
    void ins(int id,int u,int v)
    {
        for(int i=head[u];i;i=i=edge[i].next)
        {
            if(edge[i].to==v)
            {
                edge[i].flag=true;
                return;
            }
        }
        Edge *now=&edge[++cnt];
        now->next=head[u];
        now->to=v;
        now->id=id;
        now->flag=false;
        head[u]=cnt;
        now=&edge[++cnt];
        now->next=head[v];
        now->to=u;
        now->id=id;
        now->flag=false;
        head[v]=cnt;
    }
    int min(int a,int b) {return a>b?b:a;} 
    void tarjan(int now,int fa)
    {
        dfn[now]=low[now]=++tim;
        for(int u=head[now];u;u=edge[u].next)
        {
            int v=edge[u].to;
            if(!dfn[v])
            {
                tarjan(v,now);
                if(low[v]>dfn[now]&&!edge[u].flag) ans[++num]=edge[u].id;
                low[now]=min(low[now],low[v]);
            }
            else
            {if(v!=fa) low[now]=min(low[now],dfn[v]);} 
        }
    }
    int main()
    {
        scanf("%d",&T);
        for(int n,m;T--;)
        {
            init();
            scanf("%d%d",&n,&m);
            for(int x,y,i=1;i<=m;i++)
            {
                scanf("%d%d",&x,&y);
                ins(i,x,y);
            }
            tarjan(1,1);
            printf("%d
    ",num);
            sort(ans+1,ans+1+num);
            for(int i=1;i<num;i++) printf("%d ",ans[i]);
            if(num) printf("%d
    ",ans[num]);
            if(T) printf("
    ");
        }
        return 0;
    }
    我们都在命运之湖上荡舟划桨,波浪起伏着而我们无法逃脱孤航。但是假使我们迷失了方向,波浪将指引我们穿越另一天的曙光。
  • 相关阅读:
    四则运算题目生成器
    个人博客作业Week1
    M1/M2项目阶段总结
    个人博客作业week7
    个人博客作业—2
    第一周个人博客作业
    关于生成四则运算式
    个人博客作业week7
    第二次博客作业
    关于webservice大数据量传输时的压缩和解压缩
  • 原文地址:https://www.cnblogs.com/ruojisun/p/7388273.html
Copyright © 2020-2023  润新知