zoukankan      html  css  js  c++  java
  • HDU 2444 The Accomodation of Students (判断是否是二分图,然后求最大匹配)

    The Accomodation of Students

    Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

    Description
    There are a group of students. Some of them may know each other, while others don't. For example, A and B know each other, B and C know each other. But this may not imply that A and C know each other.

    Now you are given all pairs of students who know each other. Your task is to divide the students into two groups so that any two students in the same group don't know each other.If this goal can be achieved, then arrange them into double rooms. Remember, only paris appearing in the previous given set can live in the same room, which means only known students can live in the same room.

    Calculate the maximum number of pairs that can be arranged into these double rooms.
     
    Input
    For each data set:
    The first line gives two integers, n and m(1<n<=200), indicating there are n students and m pairs of students who know each other. The next m lines give such pairs.

    Proceed to the end of file.

     
    Output
    If these students cannot be divided into two groups, print "No". Otherwise, print the maximum number of pairs that can be arranged in those rooms.
     
    Sample Input
    4 4
    1 2
    1 3
    1 4
    2 3
    6 5
    1 2
    1 3
    1 4
    2 5
    3 6
     
    Sample Output
    No
    3
    题意:有n个学生,m对熟人,问你能否把他们分为2部分,其中在同一部分的人不认识,如果能,再将他们分到寝室,只有相互认识的人才能分到同一个寝室,问最多需要多少个寝室
    分析:先判断是否为二分图,不是,就输出No,否则就求最大匹配。保存图用了两种方式。
    /* ****************************************************
    #include<stdio.h>
    #include<string.h>
    #include<iostream>
    using namespace std;
    
    const int MAXN = 210;
    struct Edge{
        int to,next;
    }edge[MAXN*MAXN];
    int head[MAXN],tol;
    
    int uN,vN;
    int linker[MAXN];
    bool used[MAXN];
    
    int col[MAXN];
    
    void init()
    {
        tol=0;
        memset(head,-1,sizeof(head));
    }
    
    void addedge(int u,int v)
    {
        edge[tol].to=v;
        edge[tol].next=head[u];
        head[u]=tol++;
    }
    
    bool dfs(int u)
    {
        for(int i=head[u];i!=-1;i=edge[i].next){
            int v=edge[i].to;
            if(!used[v]){
                used[v]=true;
                if(linker[v]==-1||dfs(linker[v])){
                    linker[v]=u;
                    return true;
                }
            }
        }
        return false;
    }
    
    int Hungary()
    {
        int res=0;
        int u;
        memset(linker,-1,sizeof(linker));
        for(u=1;u<=uN;u++){
            memset(used,false,sizeof(used));
            if(dfs(u)) res++;
        }
        return res;
    }
    
    bool Color(int u)
    {
        if(col[u]==-1) col[u]=0;
        for(int i=head[u];i!=-1;i=edge[i].next){
            int v=edge[i].to;
            if(col[v]==-1){
                col[v]=col[u]^1;
                if(!Color(v)) return false;
            }
            if(col[v]==col[u]) return false;
        }
        return true;
    }
    
    int main()
    {
        int n,m;
        int u,v;
        while(scanf("%d%d",&n,&m)!=EOF){
            init();
            uN=vN=n;
            for(int i=1;i<=m;i++){
                scanf("%d%d",&u,&v);
                addedge(u,v);
                addedge(v,u);
            }
            bool flag=true;
            memset(col,-1,sizeof(col));
            for(int i=1;i<=n;i++)
                if(col[i]==-1) flag&=Color(i);
            if(!flag){
                printf("No
    ");
                continue;
            }
            else printf("%d
    ",Hungary()/2);
        }
        return 0;
    }
    ************************************************ */
    #include<stdio.h>
    #include<string.h>
    #include<iostream>
    #include<vector>
    using namespace std;
    
    const int MAXN = 210;
    vector<int> G[MAXN];
    int uN;
    int linker[MAXN];
    bool used[MAXN];
    int col[MAXN];
    
    bool dfs(int u)
    {
        for(int i=0;i<G[u].size();i++){
            int v=G[u][i];
            if(!used[v]){
                used[v]=true;
                if(linker[v]==-1||dfs(linker[v])){
                    linker[v]=u;
                    return true;
                }
            }
        }
        return false;
    }
    
    int Hungary()
    {
        int res=0;
        int u;
        memset(linker,-1,sizeof(linker));
        for(u=1;u<=uN;u++){
            memset(used,false,sizeof(used));
            if(dfs(u)) res++;
        }
        return res;
    }
    
    bool Color(int u)
    {
        if(col[u]==-1) col[u]=0;
        for(int i=0;i<G[u].size();i++){
            int v=G[u][i];
            if(col[v]==-1){
                col[v]=col[u]^1;
                if(!Color(v)) return false;
            }
            if(col[v]==col[u]) return false;
        }
        return true;
    }
    
    int main()
    {
        int n,m;
        int u,v;
        while(scanf("%d%d",&n,&m)!=EOF){
            for(int i=1;i<=n;i++) G[i].clear();
            uN=n;
            for(int i=1;i<=m;i++){
                scanf("%d%d",&u,&v);
                G[u].push_back(v);
                G[v].push_back(u);
            }
            bool flag=true;
            memset(col,-1,sizeof(col));
            for(int i=1;i<=n;i++)
                if(col[i]==-1) flag&=Color(i);
            if(!flag){
                printf("No
    ");
                continue;
            }
            else printf("%d
    ",Hungary()/2);
        }
        return 0;
    }
     
  • 相关阅读:
    分类在使用runtime做方法交换时
    打包自己Framework中含有第三方库的解决方案分CocoaPods与手动导入两种方式
    iOS 百分比圆环曲线swift4.0实现
    最新swift4.0 图片进行尺寸大小及体积压缩
    swift 密码由6-16数字和字母组合组成
    Android 7.0 之后相机/文件读写等权限获取方式改变,导致开启相机闪退
    Android Manifest 中 uses-feature 和 uses-permission的作用 关系和区别
    Android studio 3.1.3真机调试报错,no target device found
    如何用Java实现条件编译
    Missing android.support.FILE_PROVIDER_PATHS meta-data 报错原因分析
  • 原文地址:https://www.cnblogs.com/wangdongkai/p/5635723.html
Copyright © 2011-2022 走看看