hdu-2444-二分图判定+最大分配
2018-06-17 23:43:44来源:未知 阅读 ()
The Accomodation of Students
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 5451 Accepted Submission(s): 2491
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.
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.
题目大意:有n个学生,有m对人是认识的,每一对认识的人能分到一间房,问能否把n个学生分成两部分,每部分内的学生互不认识,而两部分之间的学生认识。如果可以分成两部分,就算出房间最多需要多少间,否则就输出No。
思路:二分判定用染色法,找最大匹配数用匈牙利算法
代码:
#include <iostream>
#include <vector>
#include <cstring>
#include <cstdio>
const int MAX=1e5+5;
using namespace std;
vector<int>mp[MAX];
int d[MAX],n,m,vis[MAX],link[MAX];
int dfs(int x,int f) //染色法
{
d[x]=f;
for(int i=0; i<mp[x].size(); i++)
{
if(d[x]==d[mp[x][i]])
return 0;
int u=mp[x][i];
if(d[u]==0)
if(!dfs(u,-f))
return 0;
}
return 1;
}
int dfs2(int x) //找最大匹配
{
for(int i=0; i<mp[x].size(); i++)
{
int v=mp[x][i];
if(!vis[v])
{
vis[v]=1;
if(link[v]==-1||dfs2(link[v]))
{
link[v]=x;
return 1;
}
}
}
return 0;
}
int find() //找最大匹配
{
int res=0;
memset(link,-1,sizeof(link));
for(int i=1; i<=n; i++)
{
memset(vis,0,sizeof(vis));
if(dfs2(i))
res++;
}
return res;
}
int main()
{
int a,b;
while(cin>>n>>m)
{
for(int i=1; i<=n; i++)
if(mp[i].size())
mp[i].clear();
for(int i=0; i<m; i++)
{
scanf("%d%d",&a,&b);
mp[a].push_back(b);
mp[b].push_back(a);
}
int flag=1;
memset(d,0,sizeof(d));
for(int i=1; i<=n; i++) //染色
{
if(mp[i].size())
if(!d[i])
if(!dfs(i,1))
{
flag=0;
break;
}
}
if(!flag)
cout<<"No"<<endl;
else
{
cout<<find()/2<<endl;
}
}
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:分治法求集合最大元
- 剑指offer65:矩阵中的路径(二维数组,二分查找) 2019-09-02
- Prime Time UVA - 10200(精度处理,素数判定) 2019-08-16
- 二分法(一):二分法的基本思想 2019-08-16
- 二分法(四):采用二分法解决“最大化平均值”问题 2019-08-16
- 二分法(二):采用二分法解决“最小化最大值问题” 2019-08-16
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash