博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 2444(二分图最大匹配)
阅读量:5799 次
发布时间:2019-06-18

本文共 1968 字,大约阅读时间需要 6 分钟。

先判断是否为二分图 , dfs 对每个点染色, 如果不会出现矛盾就说明是二分图。

然后就是匈牙利直接水过了。。。

 

The Accomodation of Students

Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1345    Accepted Submission(s): 661

Problem 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
 

 

Source
 

 

Recommend
gaojie
 

 

#include 
#include
#include
using namespace std;int n,m;int g[202][202];int flag;int mark[202],pre[202];int save[202],save1[202];int cnt,cnt1;void pdfs(int s,int f){ if(flag==1) return ; if(f==0) save[cnt++]=s; else save1[cnt1++]=s; mark[s]=f; for(int i=1;i<=n;i++) { if(g[s][i]==0) continue; if(mark[i]==-1) pdfs(i,f^1); else { if(mark[i] != f^1 ) { flag=1; return ; } } }}int dfs(int s){ for(int i=0;i

 

转载地址:http://qlafx.baihongyu.com/

你可能感兴趣的文章
[Java]Socket和ServerSocket学习笔记
查看>>
stupid soso spider
查看>>
svn命令在linux下的使用
查看>>
Gradle之module间依赖版本同步
查看>>
java springcloud版b2b2c社交电商spring cloud分布式微服务(十五)Springboot整合RabbitMQ...
查看>>
SpringCloud使用Prometheus监控(基于Eureka)
查看>>
10g手动创建数据库
查看>>
Spring MVC EL表达式不能显示
查看>>
【致青春】我们挥霍时间的年代
查看>>
Windwos Server 2008 R2 DHCP服务
查看>>
SAS和SATA硬盘的区别
查看>>
现代程序设计 学生情况调查
查看>>
U盘安装linux后无法引导
查看>>
C# 矩阵作业
查看>>
俺的新书《Sencha Touch实战》终于出版了
查看>>
关于数据库查询时报“query block has incorrect number of result columns”
查看>>
li下的ul----多级列表
查看>>
UVa 11292 勇者斗恶龙(The Dragon of Loowater)
查看>>
区域生长算法
查看>>
switch语句小练习
查看>>