zoukankan      html  css  js  c++  java
  • CSU 1601 War

    1601: War

    Time Limit: 1 Sec  Memory Limit: 128 MB
    Submit: 127  Solved: 36
    [Submit][Status][Web Board]

    Description

    AME decided to destroy CH’s country. In CH’ country, There are N villages, which are numbered from 1 to N. We say two village A and B are connected, if and only if there is a road between A and B, or there exists a village C such that there is a road between A and C, and C and B are connected. To defend the country from the attack of AME, CH has decided to build some roads between some villages. Let us say that two villages belong to the same garrison area if they are connected.
    Now AME has already worked out the overall plan including which road and in which order would be attacked and destroyed. CH wants to know the number of garrison areas in his country after each of AME’s attack.

    Input

    The first line contains two integers N and M — the number of villages and roads, (2 ≤ N ≤ 100000; 1 ≤ M ≤ 100000). Each of the next M lines contains two different integers u, v (1<=u, v<=N)—which means there is a road between u and v. The next line contains an integer Q which denotes the quantity of roads AME wants to destroy (1 ≤ Q ≤ M). The last line contains a series of numbers each of which denoting a road as its order of appearance — different integers separated by spaces.

    Output

    Output Q integers — the number of garrison areas in CH’s country after each of AME's attack. Each pair of numbers are separated by a single space.

    Sample Input

    3 1
    1 2
    1
    1
    4 4
    1 2
    2 3
    1 3
    3 4
    3
    2 4 3

    Sample Output

    3
    1 2 3

    HINT

     

    Source

     
    题意:给N个点,M条边,给定Q次查询,问每次查询之后有几个独立连通块。
    分析:一开始算法是先用并查集找出有几个连通块,然后每次删边的时候看看端点的出入度是否为0,依此来计数,但是这么写了几发都是WA,也没找出有什么BUG,路过大神有兴趣的话可以和我探讨下啊~
    后来就换了算法,就是先用并查集找出最后有多少个连通块,之后从后往前加边。
    #include<cstdio>
    #include<iostream>
    #include<cstring>
    #include<cstdlib>
    #include<cmath>
    #include<queue>
    #include<algorithm>
    using namespace std;
    const int MAXN=100000+5;
    int p[MAXN],u[MAXN],v[MAXN],vis[MAXN],w[MAXN],cnt[MAXN];
    int n,m,Q,ans;
    
    int findfa(int x)
    {
        return p[x]==x?x:p[x]=findfa(p[x]);
    }
    void bin(int xx,int yy)
    {
        int x=findfa(xx);
        int y=findfa(yy);
        if(x!=y)
        {
            p[x]=y;
            ans--;
        }
    }
    int main()
    {
        while(scanf("%d %d",&n,&m)!=EOF)
        {
            ans=n;
            memset(vis,0,sizeof(vis));
    
            for(int i=1;i<=m;i++)
                scanf("%d %d",&u[i],&v[i]);
    
            scanf("%d",&Q);
            for(int i=1;i<=Q;i++)
            {
                scanf("%d",&w[i]);
                vis[w[i]]=1;
            }
            for(int i=1;i<=n;i++) p[i]=i;
            for(int i=1;i<=m;i++)
                if(vis[i]==0)
                    bin(u[i],v[i]);
    
            for(int i=Q;i>0;i--)
            {
                cnt[i]=ans;
                bin(u[w[i]],v[w[i]]);
            }
            for(int i=1;i<=Q;i++)
            {
                if(i==Q) printf("%d
    ",cnt[i]);
                else printf("%d ",cnt[i]);
            }
        }
        return 0;
    }
    View Code
  • 相关阅读:
    (16)JavaScript的流程控制(js的循环)
    (15)javaScript入门
    (14)定位布局(子级在父级中自由定位 父级在页面中自由定位)
    (0-1)CSS 标签语法的属性
    ACM/ICPC 之 双向链表_构造列表-模拟祖玛 (TSH OJ-Zuma(祖玛))
    手记-数学分析(高等数学)中有关算法效率的公式列举(O,Θ,Ω)
    2014北大研究生推免机试(校内)-复杂的整数划分(DP进阶)
    整数划分问题-解法汇总(暂有DP-递归)
    2014北大研究生推免机试(校内)-垃圾炸弹(基础枚举)
    ACM/ICPC 之 BFS-广搜进阶-八数码(经典)(POJ1077+HDU1043)
  • 原文地址:https://www.cnblogs.com/clliff/p/4483717.html
Copyright © 2011-2022 走看看