POJ3487[稳定婚姻]
| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 2974 | Accepted: 1267 | 
Description
- a set M of n males;
 - a set F of n females;
 - for each male and female we have a list of all the members of the opposite gender in order of preference (from the most preferable to the least).
 
A marriage is a one-to-one mapping between males and females. A marriage is called stable, if there is no pair (m, f) such that f ∈ F prefers m ∈ M to her current partner and m prefers f over his current partner. The stable marriage A is called male-optimal if there is no other stable marriage B, where any male matches a female he prefers more than the one assigned in A.
Given preferable lists of males and females, you must find the male-optimal stable marriage.
Input
Output
Sample Input
2
3
a b c A B C
a:BAC
b:BAC
c:ACB
A:acb
B:bac
C:cab
3
a b c A B C
a:ABC
b:ABC
c:BCA
A:bac
B:acb
C:abc
Sample Output
a A
b B
c C a B
b A
c C
Source
题目大意:
    有N位女士和N位男士,每位男士或者女士都对对方有个评价。
他们会形成N对夫妻,如果A和a结婚,B和b结婚,但是A更偏爱b而非a而且b也更偏爱A而非B,那么这种婚姻是不稳定的 .
求 一个稳定的 婚姻 配对。
题目要求是男士优先,也就是男士优先表白,肯定会从最喜欢的开始表白,如果对方没有男友或者表白的男士优于当前男友,就会抛弃原来的男友,而接受表白的男士,男士也成功脱光。否则男士会被拒绝,便只能考虑下一个喜欢的女士。直到所有人都脱光,不存在拒绝情况为止。
采用 Gale-Shapley算法 :
    男生不停的求婚,女生不停地拒绝.
    算法保证:每一位男性得到的伴侣都是所有可能的稳定婚姻搭配方案中最理想的,同时每一位女性得到的伴侣都是所有可能的稳定婚姻搭配方案中最差的。
是不是只有唯一的稳定婚姻呢,觉得如果没有对两个人的评价完全相同的情况下,应该是唯一的.
- Source Code
#include<cstdio>
#include<cstring>
#include<queue>
#include<algorithm>
using namespace std;
const int N=30;
int malelike[N][N],femalelike[N][N];
int malechoice[N],femalechoice[N];
int malename[N],femalename[N];
int T,couple;char str[N];
queue<int>freemale;
int main(){
scanf("%d",&T);
while(T--){
while(!freemale.empty()) freemale.pop();
scanf("%d",&couple);
for(int i=0;i<couple;i++) scanf("%s",str),freemale.push(malename[i]=str[0]-'a');
sort(malename,malename+couple);
for(int i=0;i<couple;i++) scanf("%s",str),femalename[i]=str[0]-'A';
for(int i=0;i<couple;i++){
scanf("%s",str);
for(int j=0;j<couple;j++){
malelike[i][j]=str[j+2]-'A';
}
}
for(int i=0;i<couple;i++){
scanf("%s",str);
for(int j=0;j<couple;j++){
femalelike[i][str[j+2]-'a']=couple-j;
}
femalelike[i][couple]=0;
}
memset(malechoice,0,(couple+2)<<2);
for(int i=0;i<couple;i++) femalechoice[i]=couple;
while(!freemale.empty()){
int male=freemale.front();
int female=malelike[male][malechoice[male]];
if(femalelike[female][male]>femalelike[female][femalechoice[female]]){
freemale.pop();
if(femalechoice[female]!=couple){
freemale.push(femalechoice[female]);
malechoice[femalechoice[female]]++;
}
femalechoice[female]=male;
}
else malechoice[male]++;
}
for(int i=0;i<couple;i++) printf("%c %c\n",malename[i]+'a',malelike[malename[i]][malechoice[malename[i]]]+'A');
if(T) putchar('\n');
}
return 0;
} 
POJ3487[稳定婚姻]的更多相关文章
- 【POJ 3487】 The Stable Marriage Problem (稳定婚姻问题)
		
The Stable Marriage Problem Description The stable marriage problem consists of matching members o ...
 - 图论补档——KM算法+稳定婚姻问题
		
突然发现考前复习图论的时候直接把 KM 和 稳定婚姻 给跳了--emmm 结果现在刷训练指南就疯狂补档.QAQ. KM算法--二分图最大带权匹配 提出问题 (不严谨定义,理解即可) 二分图 定义:将点 ...
 - 【HDU1914 The Stable Marriage Problem】稳定婚姻问题
		
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1914 题目大意:问题大概是这样:有一个社团里有n个女生和n个男生,每位女生按照她的偏爱程度将男生排序, ...
 - UVA 1175 Ladies' Choice 稳定婚姻问题
		
题目链接: 题目 Ladies' Choice Time Limit: 6000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu 问题 ...
 - BZOJ2140: 稳定婚姻
		
题解: 题意就是求二分图的必须边. 我们有结论: 在残量网络上跑tarjan,对于一条边(u,v) 如果该边满流||scc[u]==scc[v],那么该边是可行边. 因为如果scc[u]==scc[v ...
 - 【UVAlive 3989】 Ladies' Choice (稳定婚姻问题)
		
Ladies' Choice Teenagers from the local high school have asked you to help them with the organizatio ...
 - 【稳定婚姻问题】【HDU1435】【Stable Match】
		
2015/7/1 19:48 题意:给一个带权二分图 求稳定匹配 稳定的意义是对于某2个匹配,比如,( a ---- 1) ,(b----2) , 如果 (a,2)<(a,1) 且(2,a)& ...
 - poj 3487 稳定婚姻
		
/** 稳定婚姻:男生不停的求婚,女生不停地拒绝 **/ #include <iostream> #include <queue> #include <cstdio> ...
 - 稳定婚姻问题和Gale-Shapley算法(转)
		
什么是算法?每当有人问作者这样的问题时,他总会引用这个例子:假如你是一个媒人,有若干个单身男子登门求助,还有同样多的单身女子也前来征婚.如果你已经知道这些女孩儿在每个男孩儿心目中的排名,以及男孩儿们在 ...
 
随机推荐
- Java Executor框架
			
java.util.concurrent 包中包含灵活的线程池实现,但是更重要的是,它包含用于管理实现 Runnable 的任务的执行的整个框架,该框架称为 Executor 框架.该框架基于生产者- ...
 - EasyBoot使用方法
			
1 修改背景图片直接替换掉EasyBoot\disk1\ezboot目录下面的BACK.BMP文件即可.但是限于DOS功能限制,只能使用640×480像素,256位色的BMP图片. 2 鼠标左键单 ...
 - css - font-size
			
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
 - antd-design  LocaleProvider国际化
			
1.LocaleProvider 使用 React 的 context 特性,只需在应用外围包裹一次即可全局生效. import { LocaleProvider } from 'antd'; imp ...
 - YII2 学习
			
下载地址: http://www.yiiframework.com/download/ http://www.yiichina.com/download 直接选择basic模板下载即可 下载之后解压到 ...
 - 经常使用传感器协议3:CJ/T-188 冷热量表协议解析2
			
本文详细阐述JY公司冷热量表(记热量)传输协议.并以此说明CJ/T-188协议在厂家详细应用时,并不一致. 本文及兴许文章将对这些不同点予以总结(文中所述协议与日志"CJ/T-188 ...
 - mybatis学习笔记(14)-查询缓存之中的一个级缓存
			
mybatis学习笔记(14)-查询缓存之中的一个级缓存 标签: mybatis mybatis学习笔记14-查询缓存之中的一个级缓存 查询缓存 一级缓存 一级缓存工作原理 一级缓存測试 一级缓存应用 ...
 - ddr3调试经验分享(一)——modelsim实现对vivado中的MIG ddr3的仿真
			
Vivado中的MIG已经集成了modelsim仿真环境,是不是所有IP 都有这个福利呢,不知道哦,没空去验证. 第一步:使用vivado中的MIG IP生成一堆东西 ,这个过程自己百度.或者是ug5 ...
 - RapidIO协议(1)
			
RapidIO协议 1.概述 1.1介绍 RapidIO是基于包交换互联协议,主要作为系统内部接口使用,如:芯片间.板间的通讯,速度能在GB/S数量级.如连接处理器.内存.内存映射的I/O设备.这些设 ...
 - Visual Studio- “无法启动此程序,因为计算机中丢失 xxx.dll尝试重新安装该程序以解决此问题"
			
下午使用VS 2013调试程序时,发现弹出了下列的错误弹框: 网上搜索之后发现是缺失了动态链接库(.dll)文件所致,因此只需要把相应的动态链接库文件放置到指定的目录即可. 另:64位系统用户需要注意 ...