hdu 2444 二分图判断与最大匹配

题意:有n个学生,有m对人是认识的,每一对认识的人能分到一间房,问能否把n个学生分成两部分,每部分内的学生互不认识,而两部分之间的学生认识。如果可以分成两部分,就算出房间最多需要多少间,否则就输出No。

首先判断是否为二分图,然后判断最大匹配

Sample Input

4 4
1 2
1 3
1 4
2 3
6 5
1 2
1 3
1 4
2 5
3 6Sample Output
No
3
 1 #include<iostream>
 2 #include<string.h>
 3 #include<vector>
 4 #include<cstdio>
 5 using namespace std;
 6 #define MAXN 202
 7 vector<int>EV[MAXN];
 8 int linker[MAXN];
 9 bool used[MAXN];
10 int uN;
11 int matchs[MAXN],cnt[MAXN];
12 bool dfs(int u)
13 {
14     int i;
15     for(i=0;i<EV[u].size();i++)
16     {
17         int v=EV[u][i];
18         if(!used[v])
19         {
20             used[v]=true;
21             if(linker[v]==-1||dfs(linker[v]))
22             {
23                 linker[v]=u;
24                 return true;
25             }
26         }
27     }
28     return false;
29 }
30 int hungary()
31 {
32     int res=0;
33     int u;
34     memset(linker,-1,sizeof(linker));
35     for(u=1;u<=uN;u++)
36     {
37         memset(used,false,sizeof(used));
38         if(dfs(u))  res++;
39     }
40     return res;
41 }
42 bool judge(int x,int y)     //交叉染色法判断二分图
43 {
44     int i;
45     for(i=0;i<EV[x].size();i++)
46     {
47         if(cnt[EV[x][i]]==0)
48         {
49             cnt[EV[x][i]]=-1*y;
50             matchs[EV[x][i]]=true;
51             if(!judge(EV[x][i],-1*y)) return false;
52         }
53         else if(cnt[EV[x][i]]==y)  return false;
54     }
55     return true;
56 }
57 bool matched()
58 {
59     int i;
60     memset(matchs,false,sizeof(matchs));
61     for(i=1;i<=uN;i++)
62     {
63         if(EV[i].size()&&!matchs[i])
64         {
65             memset(cnt,0,sizeof(cnt));
66             cnt[i]=-1;
67             matchs[i]=true;
68             if(!judge(i,-1)) return false;
69         }
70     }
71     return true;
72 }
73 int main()
74 {
75     int m;
76     int i;
77     int u,v;
78     while(scanf("%d%d",&uN,&m)!=EOF)
79     {
80         for(i=1;i<=uN;i++)
81           if(EV[i].size())  EV[i].clear();
82         while(m--)
83         {
84             scanf("%d%d",&u,&v);
85             EV[u].push_back(v);
86             EV[v].push_back(u);
87         }
88
89          if(matched())
90                   printf("%d\n",hungary()/2);
91          else  printf("No\n");
92     }
93     return 0;
94 }
时间: 2024-08-25 23:00:06

hdu 2444 二分图判断与最大匹配的相关文章

hdu 2444 The Accomodation of Students 【二分图判断+求最大匹配】

题目链接:http://acm.acmcoder.com/showproblem.php?pid=2444 题意:判断所有人是否分为两个集合,每个集合里的人互不相识. 思路:先判断是否为二分图,是的话求最大匹配,否则输出"No". 代码: #include <stdio.h> #include <ctime> #include <math.h> #include <limits.h> #include <complex> #i

hdu 2444 The Accomodation of Students(最大匹配 + 二分图判断)

http://acm.hdu.edu.cn/showproblem.php?pid=2444 The Accomodation of Students Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status Practice HDU 2444 Description There are a group of students. Some of them may know

HDU 2444 The Accomodation of Students(判断是否是二分图)

题目链接 题意:n个学生,m对关系,每一对互相认识的能住一个房间.问否把这些学生分成两组,要求每组的学生都互不认识.求最多需要多少个房间. 是否能分成两组?也就是说判断是不是二分图,判断二分图的办法,用染色法 把初始点染成黑色,然后与之相连的染成白色,重复,使路径黑白相间, 如果当前点的颜色和与他相连点的颜色相同时,则说明这个图不是二分图 求最多需要多少个房间?也就是求最大匹配数. #include <iostream> #include <cstdio> #include <

HDU 2444 The Accomodation of Students 二分图判定+最大匹配

题目来源:HDU 2444 The Accomodation of Students 题意:n个人是否可以分成2组 每组的人不能相互认识 就是二分图判定 可以分成2组 每组选一个2个人认识可以去一个双人间 最多可以有几组 思路:二分图判定+最大匹配 #include <cstdio> #include <cstring> #include <vector> using namespace std; const int maxn = 550; int vis[maxn];

HDU 2444 The Accomodation of Students二分图判定和匈牙利算法

本题就是先判断是否可以组成二分图,然后用匈牙利算法求出最大匹配. 到底如何学习一种新算法呢? 我也不知道什么方法是最佳的了,因为看书本和大牛们写的匈牙利算法详细分析,看了差不多两个小时没看懂,最后自己直接看代码,居然不到半个小时看懂了.然后就可以直接拿来解题啦. 比如topcoder上有这个算法的很详细的分析,真没看懂. 代码居然比分析更清晰了?我也不好下结论. 但是我觉得主要的思想还是有作用的. 说说我对这个算法的理解吧: 1 假设二分图分为两个集合 U, V,那么从一个集合U出发 2 U的一

hdu 4751 2013南京赛区网络赛 二分图判断 **

和以前做过的一个二分图颇为相似,以前的是互相不认识的放在一组,这个是互相认识的,本质上是相同的 是 hdu 2444 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #include<cstring> 5 #include<cmath> 6 #include<queue> 7 #include<map> 8 using namespace st

HDU 1528 (二分图最大匹配 + 最小覆盖, 14.07.17)

Problem Description Adam and Eve play a card game using a regular deck of 52 cards. The rules are simple. The players sit on opposite sides of a table, facing each other. Each player gets k cards from the deck and, after looking at them, places the c

HDU 2444 The Accomodation of Students (二分图判定,二分图匹配,匈牙利算法)

题意:有一堆的学生关系,要将他们先分成两个组,同组的人都不互不认识,如果不能分2组,输出No.若能,则继续.在两组中挑两个认识的人(每组各1人)到一个双人房.输出需要多少个双人房? 思路: 先判定是否为二分图,可以用黑白着色法(DFS或BFS都行).若是二分图,再进行匹配,用匈牙利算法,注:给的是整个图,没有区分男女,用邻接表比较好. 1 #include <bits/stdc++.h> 2 #define LL long long 3 using namespace std; 4 const

hdu 2444 The Accomodation of Students

The Accomodation of Students Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2458    Accepted Submission(s): 1177 Problem Description There are a group of students. Some of them may know each ot