当前位置:网站首页>poj2287 Tian Ji -- The Horse Racing(2016xynu暑期集训检测 -----C题)
poj2287 Tian Ji -- The Horse Racing(2016xynu暑期集训检测 -----C题)
2022-08-05 10:27:00 【51CTO】
Description
Here is a famous story in Chinese history.
That was about 2300 years ago. General Tian Ji was a high official in the country Qi. He likes to play horse racing with the king and others.Both of Tian and the king have three horses in different classes, namely, regular, plus, and super. The rule is to have three rounds in a match; each of the horses must be used in one round. The winner of a single round takes two hundred silver dollars from the loser.Being the most powerful man in the country, the king has so nice horses that in each class his horse is better than Tian's. As a result, each time the king takes six hundred silver dollars from Tian.Tian Ji was not happy about that, until he met Sun Bin, one of the most famous generals in Chinese history. Using a little trick due to Sun, Tian Ji brought home two hundred silver dollars and such a grace in the next match.It was a rather simple trick. Using his regular class horse race against the super class from the king, they will certainly lose that round. But then his plus beat the king's regular, and his super beat the king's plus. What a simple trick. And how do you think of Tian Ji, the high ranked official in China?
Were Tian Ji lives in nowadays, he will certainly laugh at himself. Even more, were he sitting in the ACM contest right now, he may discover that the horse racing problem can be simply viewed as finding the maximum matching in a bipartite graph. Draw Tian's horses on one side, and the king's horses on the other. Whenever one of Tian's horses can beat one from the king, we draw an edge between them, meaning we wish to establish this pair. Then, the problem of winning as many rounds as possible is just to find the maximum matching in this graph. If there are ties, the problem becomes more complicated, he needs to assign weights 0, 1, or -1 to all the possible edges, and find a maximum weighted perfect matching...
However, the horse racing problem is a very special case of bipartite matching. The graph is decided by the speed of the horses -- a vertex of higher speed always beat a vertex of lower speed. In this case, the weighted bipartite matching algorithm is a too advanced tool to deal with the problem.
In this problem, you are asked to write a program to solve this special case of matching problem.
Input
The input consists of up to 50 test cases. Each case starts with a positive integer n ( n<=1000) on the first line, which is the number of horses on each side. The next n integers on the second line are the speeds of Tian's horses. Then the next n integers on the third line are the speeds of the king's horses. The input ends with a line that has a single `0' after the last test case.
Output
For each input case, output a line containing a single number, which is the maximum money Tian Ji will get, in silver dollars.
Sample Input
3 92 83 71 95 87 74 2 20 20 20 20 2 20 19 22 18 0
Sample Output
200 0 0
贪心
主要是贪心策略
起初的贪心策略是
1.对田忌和齐王的马 全部按照从快到慢的顺序排列
2.如果齐王跑的最快的马比田忌跑的最快的马慢 田忌胜
3.如果齐王跑的最快的马比田忌跑的最快的马快或相等 那么用田忌最小的马来消耗 田忌输
后来发现
10 10 6 1
10 10 8 1
这个数据竟然为0
明明应该是200
想了好久 这种策略不对
对于3 应该修改为:
3.如果如果齐王跑的最快的马比田忌跑的最快的马快或相等 那么用田忌最小的马和齐王跑的最慢的马比较 如果田忌的小于或等于齐王的 那么直接和齐王
最快的马匹配,否则 田忌最慢的马和齐王跑的最慢的马匹配 田忌胜。
主要代码如下:
边栏推荐
- 登录功能和退出功能(瑞吉外卖)
- 华为轻量级神经网络架构GhostNet再升级,GPU上大显身手的G-GhostNet(IJCV22)
- PCB布局必知必会:教你正确地布设运算放大器的电路板
- 012_SSS_ Improving Diffusion Model Efficiency Through Patching
- Technical dry goods | Hausdorff distance for image segmentation based on MindSpore
- LeetCode 216. Combined Sum III (2022.08.04)
- MySQL data view
- 上位机开发C#语言:模拟STC串口助手接收单片机发送数据
- Getting started with Polkadot parachain development, this article is enough
- [Unity] [UGUI] [Display text on the screen]
猜你喜欢
SQL Outer Join Intersection, Union, Difference Query
NowCoderTOP35-40——持续更新ing
2022华数杯数学建模A题环形振荡器的优化设计思路思路代码分享
上位机开发C#语言:模拟STC串口助手接收单片机发送数据
这份阿里强推的并发编程知识点笔记,将是你拿大厂offer的突破口
[Strong Net Cup 2022] WP-UM
PCB布局必知必会:教你正确地布设运算放大器的电路板
How to choose coins and determine the corresponding strategy research
百年北欧奢华家电品牌ASKO智能三温区酒柜臻献七夕,共品珍馐爱意
Voice-based social software development - making the most of its value
随机推荐
DFINITY 基金会创始人谈熊市沉浮,DeFi 项目该何去何从
Jenkins manual (2) - software configuration
What is SPL?
JS逆向入门学习之回收商网,手机号码简易加密解析
你最隐秘的性格在哪?
STM32+ULN2003 drives 28BYJ4 stepper motor (forward and reverse according to the number of turns)
首次去中心化抢劫?近2亿美元损失:跨链桥Nomad 被攻击事件分析
使用工具类把对象中的null值转换为空字符串(集合也可以使用)
[Office] Collection of Microsoft Office download addresses (offline installation and download of Microsoft's official original version)
Go compilation principle series 6 (type checking)
mysql索引
2022杭电多校 第6场 1008.Shinobu Loves Segment Tree 规律题
Pycharm 常用外部工具
FPGA:基础入门LED灯闪烁
第九章:activit内置用户组设计与组任务分配和IdentityService接口的使用
机器学习-基础知识 - Precision, Recall, Sensitivity, Specificity, Accuracy, FNR, FPR, TPR, TNR, F1 Score, Bal
2022 Huashu Cup Mathematical Modeling Ideas Analysis and Exchange
第四章:redis 数组结构的set和一些通用命令「建议收藏」
入门 Polkadot 平行链开发,看这一篇就够了
用KUSTO查询语句(KQL)在Azure Data Explorer Database上查询LOG实战