• lightoj-1009


    1009 - Back to Underworld
    PDF (English) Statistics Forum
    Time Limit: 4 second(s) Memory Limit: 32 MB
    The Vampires and Lykans are fighting each other to death. The war has become so fierce that, none knows who will win. The humans want to know who will survive finally. But humans are afraid of going to the battlefield.

    So, they made a plan. They collected the information from the newspapers of Vampires and Lykans. They found the information about all the dual fights. Dual fight means a fight between a Lykan and a Vampire. They know the name of the dual fighters, but don't know which one of them is a Vampire or a Lykan.

    So, the humans listed all the rivals. They want to find the maximum possible number of Vampires or Lykans.

    Input
    Input starts with an integer T (≤ 10), denoting the number of test cases.

    Each case contains an integer n (1 ≤ n ≤ 105), denoting the number of dual fights. Each of the next n lines will contain two different integers u v (1 ≤ u, v ≤ 20000) denoting there was a fight between u and v. No rival will be reported more than once.

    Output
    For each case, print the case number and the maximum possible members of any race.

    Sample Input
    Output for Sample Input
    2
    2
    1 2
    2 3
    3
    1 2
    2 3
    4 2
    Case 1: 2
    Case 2: 3

    题目大意:给出N组对战的军队编号,求属于同个国家军队数的最大数量

    解题思路: 每个连通的二分图中,只要有一个点确定是哪个国家的,那么整个连通图的节点所属的国家也就确定了。然后把每个连通图的计算出来较多的军队数相加起来。就搞定了。

    #include<iostream>
    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    #include<vector>
    using namespace std;
    
    const int N = 20010;
    vector<int> vv[N];
    bool uu[N],vis[N];
    
    int T,n,u,v,maxn,minn,sum,sum1;
    
    void init(){
        for(int i=0;i<N;i++) vv[i].clear();
        memset(uu,false,sizeof(uu));
        memset(vis,false,sizeof(vis));
        maxn = 0;
        minn = N;
    }
    
    void dfs(int u,bool flag){// flag 用来实现类似染色的功能,因为每次的染色不需要多次用到,所以直接传参过去就行了。 
        
        sum++;if(flag==1) sum1++;
        vis[u] = true;
        for(int i=0;i<vv[u].size();i++){
            
            if(vis[vv[u][i]]) continue;
            
            dfs(vv[u][i],!flag);
            
        }
        
        return ;
    }
    
    int main(){
        
        scanf("%d",&T);
        for(int t=1;t<=T;t++){
            init();
            scanf("%d",&n);
            for(int i=0;i<n;i++){
                
                scanf("%d%d",&u,&v);
                uu[u] = uu[v] = true;
                vv[u].push_back(v);
                vv[v].push_back(u);
                maxn = max(maxn,max(u,v));
                minn = min(minn,min(u,v));
            }
            int ans = 0;
            for(int i=minn;i<=maxn;i++){
                
                if(uu[i]==false||vis[i]==true) continue; // 不存在或者访问过的点 直接continue; 
                sum = sum1 = 0;
                dfs(i,0);
                ans += max(sum1,sum-sum1);
                
            }
            printf("Case %d: %d
    ",t,ans);
        }
        
        return 0;
    }
    View Code
  • 相关阅读:
    vue路由的两种模式,hash与history
    javascript的继承小结
    attr和prop区别
    ie6、7下 text-indent 问题
    推荐链接
    iphone中 input圆角bug
    gif图片加载问题
    IE7中绝对定位元素之间的遮盖问题
    多行文本溢出显示省略号(...)的方法
    ie6兼容之绝对定位元素内容为空时高度问题
  • 原文地址:https://www.cnblogs.com/yuanshixingdan/p/5559778.html
Copyright © 2020-2023  润新知