当前位置:网站首页>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.如果如果齐王跑的最快的马比田忌跑的最快的马快或相等 那么用田忌最小的马和齐王跑的最慢的马比较 如果田忌的小于或等于齐王的 那么直接和齐王
最快的马匹配,否则 田忌最慢的马和齐王跑的最慢的马匹配 田忌胜。
主要代码如下:
边栏推荐
- Egg framework usage (2)
- Login function and logout function (St. Regis Takeaway)
- A small test of basic grammar, Go lang1.18 introductory refining tutorial, from Bai Ding to Hongru, basic grammar of go lang and the use of variables EP02
- SQL Outer Join Intersection, Union, Difference Query
- MySQL data view
- 2022华数杯数学建模思路分析交流
- Common operations of oracle under linux and daily accumulation of knowledge points (functions, timed tasks)
- RT-Thread记录(一、RT-Thread 版本、RT-Thread Studio开发环境 及 配合CubeMX开发快速上手)
- Offensive World-PWN-new_easypwn
- 2022华数杯数学建模A题环形振荡器的优化设计思路思路代码分享
猜你喜欢
STM32+ULN2003 drives 28BYJ4 stepper motor (forward and reverse according to the number of turns)
How can project cost control help project success?
Data Middle Office Construction (10): Data Security Management
登录功能和退出功能(瑞吉外卖)
语音社交软件开发——充分发挥其价值
创建一个 Dapp,为什么要选择波卡?
电气工程的标准是什么
Common operations of oracle under linux and daily accumulation of knowledge points (functions, timed tasks)
阿里全新推出:微服务突击手册,把所有操作都写出来了PDF
Jenkins使用手册(2) —— 软件配置
随机推荐
语音社交软件开发——充分发挥其价值
Huawei's lightweight neural network architecture GhostNet has been upgraded again, and G-GhostNet (IJCV22) has shown its talents on the GPU
机器学习-基础知识 - Precision, Recall, Sensitivity, Specificity, Accuracy, FNR, FPR, TPR, TNR, F1 Score, Bal
2022杭电多校 第6场 1008.Shinobu Loves Segment Tree 规律题
DFINITY 基金会创始人谈熊市沉浮,DeFi 项目该何去何从
阿里全新推出:微服务突击手册,把所有操作都写出来了PDF
皕杰报表的下拉框联动
js hijacks the array push method
Four years of weight loss record
MySQL事务
导火索:OAuth 2.0四种授权登录方式必读
Login function and logout function (St. Regis Takeaway)
浅析WSGI协议
Is digital transformation a business buy-in?
SQL Outer Join Intersection, Union, Difference Query
uniapp connect ibeacon
First Decentralized Heist?Loss of nearly 200 million US dollars: analysis of the attack on the cross-chain bridge Nomad
Leetcode刷题——623. 在二叉树中增加一行
FPGA: Use of the development environment Vivado
Voice-based social software development - making the most of its value