HDU 1528&&ZOJ 2223 Card Game Cheater(二分图匹配)

Card Game Cheater
________________________________________
Time Limit: 10 Seconds      Memory Limit: 32768 KB
________________________________________
Adam and Eve play a card game using a regular deck of 52 cards. The rules are simple. The players sit on opposite sides of a table, facing each other. Each player gets k cards from the deck and, after looking at them, places the cards face down in a row on the table. Adam��s cards are numbered from 1 to k from his left, and Eve��s cards are numbered 1 to k from her right (so Eve��s i:th card is opposite Adam��s i:th card). The cards are turned face up, and points are awarded as follows (for each i �� {1, . . . , k}):
•  If Adam��s i:th card beats Eve��s i:th card, then Adam gets one point.
•  If Eve��s i:th card beats Adam��s i:th card, then Eve gets one point.
•  A card with higher value always beats a card with a lower value: a three beats a two, a four beats a three and a two, etc. An ace beats every card except (possibly) another ace.
•  If the two i:th cards have the same value, then the suit determines who wins: hearts beats all other suits, spades beats all suits except hearts, diamond beats only clubs, and clubs does not beat any suit.
For example, the ten of spades beats the ten of diamonds but not the Jack of clubs.
This ought to be a game of chance, but lately Eve is winning most of the time, and the reason is that she has started to use marked cards. In other words, she knows which cards Adam has on the table before he turns them face up. Using this information she orders her own cards so that she gets as many points as possible.
Your task is to, given Adam��s and Eve��s cards, determine how many points Eve will get if she plays optimally.
Input
There will be several test cases. The first line of input will contain a single positive integer N giving the number of test cases. After that line follow the test cases.
Each test case starts with a line with a single positive integer k <= 26 which is the number of cards each player gets. The next line describes the k cards Adam has placed on the table, left to right. The next line describes the k cards Eve has (but she has not yet placed them on the table). A card is described by two characters, the first one being its value (2, 3, 4, 5, 6, 7, 8 ,9, T, J, Q, K, or A), and the second one being its suit (C, D, S, or H). Cards are separated by white spaces. So if Adam��s cards are the ten of clubs, the two of hearts, and the Jack of diamonds, that could be described by the line
TC 2H JD
Output
For each test case output a single line with the number of points Eve gets if she picks the optimal way to arrange her cards on the table.
Sample Input
3
1
JD
JH
2
5D TC
4C 5H
3
2H 3H 4H
2D 3D 4D
Sample Output
1
1
2
题目意思其实比较简单:两个人在一起打牌,每张牌由两个字符组成。第一个字符有
(2, 3, 4, 5, 6, 7, 8 ,9, T, J, Q, K, or A)这些,第二个字符有(C, D, S, or H)这些,
都是越到后面越大。两张牌比大小,第一个字符大的牌就大,如果相同,看第二个字符的大小。
现在两个手上都是N张牌,开始Adam把牌依次放在座子上,现在Eve可以根据Adam牌的顺序调整自己牌的顺序,使得自己尽可能多赢分(赢一张牌的一分)


那么我们可以构建一个二分图,把Eve可能赢的边都连接出来,在求一遍最大二分匹配

这个就是答案了


#include<iostream>
#include<cstdio>
#include<functional>
#include<algorithm>
#include<cstring>
using namespace std;
string s1[30],s2[30];
int match[30],book[30];
int e[30][30];
int t,num;
int getnum(char s)//把字符转换为数字大小
{
	//第一个字符
	if('0'<=s&&s<='9') return s-'0';
	if(s=='T') return 10;
	else if(s=='J') return 11;
	else if(s=='Q') return 12;
	else if(s=='K') return 13;
	else if(s=='A') return 14;
	//第二个字符
	else if(s=='C') return 20;
	else if(s=='D') return 21;
	else if(s=='S') return 22;
	else if(s=='H') return 23;


}
int dfs(int u)
{
	int i;
	for(i=1;i<=num;i++)
	{
		if(book[i]==0&&e[u][i]==1)
		{
			book[i]=1;
			if(match[i]==0||dfs(match[i]))
			{
				match[i]=u;
				return 1;
			}
		}
	}
	return 0;
}
int main()
{
	int i,j,sum;
	int a,b;
	scanf("%d",&t);
	while(t--)
	{
		sum=0;
		memset(e,0,sizeof(e));
		scanf("%d",&num);
		for(i=1;i<30;i++)
		{
			s1[i].clear();
			s2[i].clear();
		}
		for(i=1;i<=num;i++)
			cin>>s1[i];
		for(i=1;i<=num;i++)
			cin>>s2[i];

		for(i=1;i<=num;i++)//建图过程
			for(j=1;j<=num;j++)
		{
			a=getnum(s2[i][0]);//Eve牌面大小
			b=getnum(s1[j][0]);//Adam牌面大小
			if(a>b)//第一个字符就大
				e[i][j]=1;
			else if(a==b)//第一个字符相同
			{
				a=getnum(s2[i][1]);
				b=getnum(s1[j][1]);
				if(a>b)
					e[i][j]=1;
			}
		}
		for(i=1;i<=num;i++)//二分图最大匹配过程
			match[i]=0;
		for(i=1;i<=num;i++)
		{
			for(j=1;j<=num;j++)
				book[j]=0;
			if(dfs(i))
				sum++;
		}
		printf("%d\n",sum);
	}
	return 0;
}





全部评论

相关推荐

2025-11-13 19:44
哈尔滨工程大学 Java
二战小红书,又是二面挂,还是做不到。先吃饭吧。9.18小红书商业技术实习深挖分布式锁设置五分钟过期并在finally里释放锁会不会有释放不了的时候,看门狗机制如何实现,它的后台线程是什么类型spisynchronized,monitorexit执行两次你知道吗AQS垃圾回收器mysql锁redis过期删除,怎么选取过期key,数据量大的话这键值字典和过期字典会不会比较大手撕最长上升子序列9.24小红书商业技术实习FAQ的理解实习意图识别或者提示词这块有什么细节的困难,怎么解决的实习定时任务和kafka发消息这块实现细节,现在定时任务要扫描的数据变成亿级了该怎么设计实习问答匹配率提升20%怎么来的数据,分子分母是啥看你实习了挺久,没提转正吗如果offer比较多你如何选择无手撕11.10小红书风控工程介绍实习,参数提取检验补齐有了新业务意图是需要再扩展吗,意图识别提升10%哪来的,哪块是最有挑战的,系统吞吐量多少,用到哪些大模型了java注解,自己用过吗jvm内存模型mysql什么情况适合建索引kafka怎么消息去重linux查看端口被哪个进程占用命令手撕全排列11.12小红书风控工程考研辅导经历,考研成绩,本科成绩,为什么考研,高考为什么没考好,本科成绩平平研究生成绩不错是怎么转变的,为什么走工程不走算法实习经历,提取参数的过程中用户问别的会怎么样,挑战困难,转正情况kafka会丢失消息吗,消费者消费失败broker怎么感知到从而重新投递呢,消费者怎么知道自己从哪里重新拉取,消费成功后没及时记录offset会不会重复消费rpc过程怎么找到对应服务的,一直访问注册中心会不会压力大优缺点,自驱力高的原因,怎么做到长期坚持的,平时怎么学习,平时沟通也这么谨慎吗,有什么爱好进程线程,文件内容读到内存是单线程还是多线程好,磁盘是机械磁盘和固态磁盘对答案有影响吗大文件中内容都是单词,需要对单词排序,什么思路,会内存溢出吗无手撕
查看28道真题和解析
点赞 评论 收藏
分享
萧索X:写篮球联赛干嘛,陪老板打篮球吗。还有实习经历要写自己所在岗位具体完成什么工作,自己的任务具体完成了什么需求,给公司带来了哪些量化增长
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务