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+;
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=; i<mp[x].size(); i++)
{
if(d[x]==d[mp[x][i]])
return;
int u=mp[x][i];
if(d[u]==)
if(!dfs(u,-f))
return;
}
return;
}
int dfs2(int x) //找最大匹配
{
for(int i=; i<mp[x].size(); i++)
{
int v=mp[x][i];
if(!vis[v])
{
vis[v]=;
if(link[v]==-||dfs2(link[v]))
{
link[v]=x;
return;
}
}
}
return; }
int find() //找最大匹配
{
int res=;
memset(link,-,sizeof(link));
for(int i=; i<=n; i++)
{
memset(vis,,sizeof(vis));
if(dfs2(i))
res++;
}
return res;
}
int main()
{
int a,b;
while(cin>>n>>m)
{
for(int i=; i<=n; i++)
if(mp[i].size())
mp[i].clear();
for(int i=; i<m; i++)
{
scanf("%d%d",&a,&b);
mp[a].push_back(b);
mp[b].push_back(a);
}
int flag=;
memset(d,,sizeof(d));
for(int i=; i<=n; i++) //染色
{
if(mp[i].size())
if(!d[i])
if(!dfs(i,))
{
flag=;
break;
}
}
if(!flag)
cout<<"No"<<endl;
else
{
cout<<find()/<<endl;
} }
}