zoukankan      html  css  js  c++  java
  • Lightoj 1009

    1009 - Back to Underworld
    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 uand 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

    二分图染色

    dfs

    /* ***********************************************
    Author        :guanjun
    Created Time  :2016-6-12 15:28:00
    File Name     :1009.cpp
    ************************************************ */
    #include <iostream>
    #include <cstring>
    #include <cstdlib>
    #include <stdio.h>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <iomanip>
    #include <list>
    #include <deque>
    #include <stack>
    #define ull unsigned long long
    #define ll long long
    #define mod 90001
    #define INF 0x3f3f3f3f
    #define maxn 20100
    #define cle(a) memset(a,0,sizeof(a))
    const ull inf = 1LL << 61;
    const double eps=1e-5;
    using namespace std;
    
    vector<int>edge[maxn];
    int vis[maxn];
    int a,b;
    void init(){
        cle(vis);
        a=b=0;
        for(int i=0;i<maxn;i++)edge[i].clear();
    }
    void dfs(int u,int k){
        vis[u]=k;
        if(k==1)a++;
        if(k==2)b++;
        for(int i=0;i<edge[u].size();i++){
            int v=edge[u][i];
            if(!vis[v]){
                dfs(v,3-k);
            }
        }
    }
    int main()
    {
        #ifndef ONLINE_JUDGE
        freopen("in.txt","r",stdin);
        #endif
        //freopen("out.txt","w",stdout);
        int T,n,x,y;
        cin>>T;
        for(int t=1;t<=T;t++){
            init();
            scanf("%d",&n);
            for(int i=1;i<=n;i++){
                scanf("%d%d",&x,&y);
                edge[x].push_back(y);
                edge[y].push_back(x);
            }
            int ans=0;
            for(int i=1;i<maxn;i++){
                if(vis[i]==0&&edge[i].size()){
                    a=0;b=0;
                    dfs(i,1);
                    ans+=max(a,b);
                }
            }
            
            printf("Case %d: %d
    ",t,ans);
        }
        return 0;
    }
  • 相关阅读:
    JAVA中获取当前系统时间
    struts2文件下载及 <param name="inputName">inputStream</param>的理解
    struts2文件下载,动态设置资源地址
    IE8上传文件时文件本地路径变成"C:fakepath"的问题
    Java设置session超时(失效)的三种方式
    学一点Git--20分钟git快速上手
    关于服务器响应,浏览器请求的理解以及javaWeb项目的编码问题
    GBK、GB2312、iso-8859-1之间的区别
    mysql的多表查询
    mysql错误:“ Every derived table must have its own alias”(每个派生出来的表都必须有一个自己的别名)
  • 原文地址:https://www.cnblogs.com/pk28/p/5578001.html
Copyright © 2011-2022 走看看