Problem 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

思路

1.先看双方目前最好的马
1.1如果田胜,则两者最强的马比赛
1.2如果王胜,则将田最弱的和王最强的比赛
1.3两者相等
1.3.1 比较两者目前最差的马
1.3.1.1 如果田胜,则两者最差的马比赛
1.3.1.2 如果田不胜,则将田最弱和王最强比赛

代码

#include<iostream>
#include<algorithm>
#include<cmath>
#include<cstdio>
using namespace std;
bool mycompare(int a, int b)
{return a > b;
}
int main()
{int n;while (cin >> n){int ans = 0;int a[1005], b[1005];int ai = 0, bi = 0, aj = n - 1,  bj = n - 1;if(n == 0) break;for (int i = 0; i < n; i++){cin >> a[i];//输入田}sort(a, a + n, mycompare);//排序田for (int i = 0; i < n; i++){cin >> b[i];//输入王}sort(b, b + n, mycompare);//排序王while (n--){//先看双方目前最好的马if (a[ai] > b[bi])//如果田胜,则两者最强的马比赛{ans += 200;ai++;bi++;}else if (a[ai] < b[bi])//如果王胜,则将田最弱的和王最强的比赛{ans -= 200;aj--;bi++;}else//两者相等{//比较两者目前最差的马if (a[aj] > b[bj])//如果田胜,则两者最差的马比赛{ans += 200;aj--;bj--;}else//如果田不胜,则将田最弱和王最强比赛{if (a[aj] < b[bi])ans -= 200;aj--;bi++;}}}cout << ans << endl;}
}

疑惑点

有一个思路尝试实现却报wrong answer
就是先把两个序列从大到小排序
将王和田最大的标记
1.田比王大 则标记田和标记王同时向后移动 ans+=200
2.田比王小 则标记王向后移动,田不变
3.田和王一样大,则标记田和标记王同时向后移动
最后当王全都遍历完,ans-=没遍历到的田*200
最后的ans就是答案
试了几个案例都是正确的,一直找不到问题在哪,麻烦研究过的大佬帮忙解答,谢谢。

杭电1052-Tian Ji -- The Horse Racing 贪心算法(有思路和注释)相关推荐

  1. 杭电1042c语言循环,HDU杭电1052 Tian Ji - The Horse Racing答题报告

    HDU杭电1052 Tian Ji -- The Horse Racing解题报告 本人第一次写博客,希望各位大神多多指导与包涵,不足的地方还请指出,新手在此谢过啦!!! 题目描述: Time Lim ...

  2. HDU杭电1052 Tian Ji -- The Horse Racing解题报告

    本人第一次写博客,希望各位大神多多指导与包涵,不足的地方还请指出,新手在此谢过啦!!! 题目描述: Time Limit: 2000/1000 MS (Java/Others)    Memory L ...

  3. Tian Ji -- The Horse Racing 贪心算法

    Problem Description Here is a famous story in Chinese history. "That was about 2300 years ago. ...

  4. 贪心法田忌赛马问题Java代码,hdoj 1052 Tian Ji - The Horse Racing【田忌赛马】 【贪心】...

    hdoj 1052 Tian Ji -- The Horse Racing[田忌赛马] [贪心] 思路:先按从小到大排序, 然后从最快的开始比(假设i, j 是最慢的一端, flag1, flag2是 ...

  5. hdu 1052 Tian Ji -- The Horse Racing

    Tian Ji -- The Horse Racing Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Jav ...

  6. Tian Ji -- The Horse Racing(贪心+STL)

    Problem:Tian Ji – The Horse Racing Description: Here is a famous story in Chinese history. "Tha ...

  7. 2018北大暑校acm算法训练课程 Tian Ji -- The Horse Racing 贪心

    总时间限制: 5000ms 内存限制: 65536kB 描述 Here is a famous story in Chinese history. That was about 2300 years ...

  8. HDU 1052 Tian Ji -- The Horse Racing

    题目:http://acm.hdu.edu.cn/showproblem.php?pid=1052 题意:田忌赛马,贪心 #include<iostream> #include<al ...

  9. poj hdu Tian Ji -- The Horse Racing 贪心

    http://acm.hdu.edu.cn/showproblem.php?pid=1052 田忌赛马 先把田忌和国王的马排序. 每次取田忌的最快的马与国王最快的马比较,有三种情况. 一,田忌最快的马 ...

最新文章

  1. javascript 学习三 语句
  2. 迁移 Spring Boot 到函数计算
  3. 游戏中的数学与物理学 第二版_在游戏中启蒙幼儿的数学能力和逻辑思维能力...
  4. 指令 机器指令 汇编指令 指令系统 汇编指令的基本构成 操作数
  5. 淘宝开放平台正式环境获取数据(一)
  6. Bailian3244 跳水比赛【水题】
  7. PowerMockito Mock私有方法
  8. Linux下集群的搭建
  9. Android - TextView Ellipsize属性
  10. 5.11 使用新建填充图层制作艺术效果 [原创Ps教程]
  11. 100条经典C++笔试题目及答案分享
  12. cc32a_demo-32dk2j_cpp_纯虚函数与抽象类-txwtech
  13. wazuh agent 认证
  14. draftsight的热补丁
  15. 安卓解析xml格式字符串
  16. GStreamer连接 IP 网络摄像机的实际例子
  17. 机器学习-RNN机器翻译
  18. Android 代码混淆 包名被混淆 主工程二次混淆 一站解决你的混淆
  19. LaTex 写作技巧
  20. 智慧农业发展(生产,加工,电商,文旅,人才)

热门文章

  1. 怎么把照片改成一寸照?教你把照片改成一寸照的方法
  2. 计算机关闭应用程序的快捷键,关闭电脑程序的快捷键是什么
  3. 基于java中国象棋游戏
  4. 讲解 Spatial Pyramid Pooling
  5. 可以参考的前端网站(提高审美和创新)
  6. win人工智能助手——小爱同学uwp版 (win10专属)
  7. PPT转换成PDF后文档的背景色没有了怎么办?
  8. 逆转的生殖——形而下的EOE补完仪式…
  9. R语言使用na.omit函数删除矩阵matrix数据中的缺失值(NA值)
  10. 数据库mysql学习第一天