博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ2771_Guardian of Decency(二分图/最大独立集=N-最大匹配)
阅读量:6281 次
发布时间:2019-06-22

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

解决报告

题意:

看到题目我就笑了。。,

老师觉得这种两个学生不是一对:

身高相差40以上(年龄都不是距离了,身高又算什么)

不同性别(sad。。,就不同意基友存在呀。,,谁的肥皂掉了。,。)

喜欢不一样的歌曲类型(你总不能要求两人整天听小苹果吧,,,,,,你是我的小丫小苹果,,,,,,)

喜欢一样的运动( they are likely to be fans of different teams and that would result in fighting......这是什么理由。喜欢同个不同球队还会打起来

问最多的不在一起的有多少人

思路:

不在一起代表独立于相爱关系的。也就是求最大独立集,集合里面随意两个人都不相爱

最大独立集=结点数-最大匹配

ps不知道是不是写挫了,重写才过。sad。

。。

#include 
#include
#include
#include
using namespace std;struct node{ int h; char sex; char mus[110]; char spo[110];}M[510],F[510];int n,m,f,mmap[550][550],pre[550],vis[550];int pd(int i,int j){ if( abs(M[i].h - F[j].h) > 40 ) return 0; if( strcmp(M[i].mus,F[j].mus) ) return 0; if( strcmp(M[i].spo,F[j].spo) == 0 ) return 0; return 1;}int dfs(int x){ for(int i=m+1;i<=m+f;i++){ if(!vis[i]&&mmap[x][i]){ vis[i]=1; if(pre[i]==-1||dfs(pre[i])){ pre[i]=x; return 1; } } } return 0;}int main(){ int i,j,t,h; char str[100]; scanf("%d",&t); while(t--){ scanf("%d",&n); m=f=1; memset(mmap,0,sizeof(mmap)); memset(pre,-1,sizeof(pre)); memset(M,0,sizeof(M)); memset(F,0,sizeof(F)); for(i=1;i<=n;i++){ scanf("%d%s",&h,str); if(str[0]=='M'){ scanf("%s%s",M[m].mus,M[m].spo); M[m].h=h; M[m++].sex='M'; } else { scanf("%s%s",F[f].mus,F[f].spo); F[f].h=h; F[f++].sex='F'; } } for(i=1;i<=m;i++){ for(j=1;j<=f;j++){ if(pd(i,j)) mmap[i][m+j]=1; } } int ans=0; for(i=1;i<=m;i++){ memset(vis,0,sizeof(vis)); ans+=dfs(i); } printf("%d\n",n-ans); }}

Guardian of Decency
Time Limit: 3000MS   Memory Limit: 65536K
Total Submissions: 4876   Accepted: 2056

Description

Frank N. Stein is a very conservative high-school teacher. He wants to take some of his students on an excursion, but he is afraid that some of them might become couples. While you can never exclude this possibility, he has made some rules that he thinks indicates a low probability two persons will become a couple: 
  • Their height differs by more than 40 cm. 
  • They are of the same sex. 
  • Their preferred music style is different. 
  • Their favourite sport is the same (they are likely to be fans of different teams and that would result in fighting).
So, for any two persons that he brings on the excursion, they must satisfy at least one of the requirements above. Help him find the maximum number of persons he can take, given their vital information. 

Input

The first line of the input consists of an integer T ≤ 100 giving the number of test cases. The first line of each test case consists of an integer N ≤ 500 giving the number of pupils. Next there will be one line for each pupil consisting of four space-separated data items: 
  • an integer h giving the height in cm; 
  • a character 'F' for female or 'M' for male; 
  • a string describing the preferred music style; 
  • a string with the name of the favourite sport.
No string in the input will contain more than 100 characters, nor will any string contain any whitespace. 

Output

For each test case in the input there should be one line with an integer giving the maximum number of eligible pupils.

Sample Input

2435 M classicism programming0 M baroque skiing43 M baroque chess30 F baroque soccer827 M romance programming194 F baroque programming67 M baroque ping-pong51 M classicism programming80 M classicism Paintball35 M baroque ping-pong39 F romance ping-pong110 M romance Paintball

Sample Output

37

版权声明:本文博客原创文章。博客,未经同意,不得转载。

你可能感兴趣的文章
dotfuscator初步
查看>>
Ubuntu各个版本的介绍
查看>>
【leetcode】Pascal's Triangle I & II (middle)
查看>>
SQL Server
查看>>
GitHub详细教程
查看>>
【书评:Oracle查询优化改写】第三章
查看>>
Python 内置彩蛋
查看>>
SQLServer 之 常用函数及查看
查看>>
FrameWork中SQLServer数据源使用宏函数出错解决办法
查看>>
[.net 面向对象编程基础] (8) 基础中的基础——修饰符
查看>>
如何在plSql查询数据查出的数据可编辑
查看>>
2015年第11本:代码整洁之道Clean Code
查看>>
PHP 错误与异常 笔记与总结(11 )register_shutdown_function() 函数的使用
查看>>
talend 将hbase中数据导入到mysql中
查看>>
内置在虚拟机上64位操作系统:该主机支持 Intel VT-x,但 Intel VT-x 残
查看>>
Material Design练习
查看>>
[译] 二、开始iOS编程之前,你还需要做什么?
查看>>
java中注解的使用与实例(一)
查看>>
Alisha’s Party(队列)
查看>>
Cocos2d-x3.0游戏实例《不要救我》第十篇(结束)——使用Json配置数据类型的怪物...
查看>>