当前位置:网站首页>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.如果如果齐王跑的最快的马比田忌跑的最快的马快或相等 那么用田忌最小的马和齐王跑的最慢的马比较 如果田忌的小于或等于齐王的 那么直接和齐王
最快的马匹配,否则 田忌最慢的马和齐王跑的最慢的马匹配 田忌胜。
主要代码如下:
边栏推荐
- 第九章:activit内置用户组设计与组任务分配和IdentityService接口的使用
- mysql索引
- MySQL data view
- 七夕来袭!还要做CDH数据迁移怎么办?来看看DistCp
- 012_SSS_ Improving Diffusion Model Efficiency Through Patching
- 静态链接和动态链接
- 第五章:activiti流程分流判断,判断走不同的任务节点
- First Decentralized Heist?Loss of nearly 200 million US dollars: analysis of the attack on the cross-chain bridge Nomad
- Brief Analysis of WSGI Protocol
- 如何测试一下现场的备机失败,转发主机的场景?
猜你喜欢

First Decentralized Heist?Loss of nearly 200 million US dollars: analysis of the attack on the cross-chain bridge Nomad

技术干货 | 基于 MindSpore 实现图像分割之豪斯多夫距离

The JVM collection that Alibaba's top architects have summarized for many years, where can't I check it!

Complete image segmentation efficiently based on MindSpore and realize Dice!

NowCoderTOP35-40——持续更新ing

Pycharm 常用外部工具

SD NAND Flash简介!
![[强网杯2022]WP-UM](/img/3d/caeab05ddca278af274dbf6e2f8ba1.png)
[强网杯2022]WP-UM

单片机:温度控制DS18B20

首次去中心化抢劫?近2亿美元损失:跨链桥Nomad 被攻击事件分析
随机推荐
【Unity】【UGUI】【在屏幕上显示文本】
First Decentralized Heist?Loss of nearly 200 million US dollars: analysis of the attack on the cross-chain bridge Nomad
电竞、便捷、高效、安全,盘点OriginOS功能的关键词
静态链接和动态链接
PHP 操作mangoDb
[Office] Collection of Microsoft Office download addresses (offline installation and download of Microsoft's official original version)
电气工程的标准是什么
What is SPL?
three.js调试工具dat.gui使用
012_SSS_ Improving Diffusion Model Efficiency Through Patching
气象数据数据处理实例——matlab字符串切割匹配与R语言日期匹配(数据拼接)
第五章:多线程通信—wait和notify
The century-old Nordic luxury home appliance brand ASKO smart wine cabinet in the three-temperature area presents the Chinese Valentine’s Day, and tastes the love of the delicacy
项目成本控制如何帮助项目成功?
The query that the user's test score is greater than the average score of a single subject
教你本地编译运行一个IDEA插件,在IDEA里聊天、下棋、斗地主!
three.js debugging tool dat.gui use
Chapter 5: Multithreaded Communication—wait and notify
The host computer develops C# language: simulates the STC serial port assistant to receive the data sent by the microcontroller
MySQL data view