Tian Ji -- The Horse Racing

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 17221    Accepted Submission(s): 4998

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
0
 
Source
 

引用了古代田忌赛马的故事,不过此题将这个故事的三马,扩充到了n配马,面对这样一个比赛,解题方法多样。

方法一:

我们不妨先让这些马按从小到大的顺序排序,比如样列中的数据一:

3
92 83 71   ---》  71 83 92
95 87 74            74 87 95 
由于得到了有序的马匹,所以只需要逐步将将角标逐步的挪一下然后比较这个过程的最大值即为所求
  答案:因而我们不妨,设置一个循环数组什么的,然后就可以模拟上面的东西了..
代码如下:
   当然可以使用mode来节约空间开销,但是明显增大了时间开销!!!(所以不推荐)
 /*coder hdu 1055@Gxjun*/
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn=;
int aa[*maxn],bb[maxn];
int main()
{
int n,i,j,count,cnt;
while(scanf("%d",&n)!=EOF&&!=n){
for(i=;i<n;i++) scanf("%d",aa+i);
for(i=;i<n;i++) scanf("%d",bb+i);
sort(aa,aa+n); //从大到小排序 general
sort(bb,bb+n); //从小到大排序 king
for (i=;i<n;i++) aa[i+n]=aa[i];
count=-0x3f3f3f3f;
for(i=;i<n;i++){
cnt=;
for(j=;j<n;j++){
if(aa[i+j]<bb[j]) cnt--;
else if(aa[i+j]>bb[j]) cnt++;
}
if(count<cnt) count=cnt;
}
printf("%d\n",count*);
}
return ;
}

对于这道题可以用二分匹配,但是tle ,面对这一个问题,我们还可以使用贪心什么的求解,最终得到我们所需要的答案!

反正总之一句话,如果田忌的慢马比国王的慢马快,直接比较,否则这个慢马
        毫无价值,用来当炮灰,去跟国王的快马相比,如果田忌的快马比国王快,直接比较
       否则这个快马也是个炮灰,只好去跟国王后边的慢马比,但是到底跟那个比可不一定,
       所以不用去一个一个的试,当快马比不过的时候,用慢马去当炮灰,然后用快马跟国王
      的下一匹快马比较

最新文章

  1. html基本知识点
  2. archlinux pacman 常用选项
  3. 关于模板中的动态取值 ---反射与javascript脚本编译
  4. Windows7 64位系统搭建Cocos2d-x 2.2.1最新版以及Android交叉编译环境(具体教程)
  5. 1.tomcat部署项目的几种方式和weblogic部署方式及一点通讯
  6. execute immediate的简单用法(oracle)
  7. 初识JAVA,对servlet的理解
  8. Misha and Palindrome Degree
  9. HDU 5652 India and China Origins
  10. jenkins到底如何拉取代码 如何部署的
  11. (转)[置顶] Android APK反编译就这么简单 详解(附图) .
  12. centos7后台服务部署jar包
  13. makefile $@, $^, $&lt;, $? 表示的意义
  14. Python基础理论 - 函数
  15. 【BZOJ5250】[九省联考2018]秘密袭击(动态规划)
  16. React Native for Android应用名及图标修改
  17. cksum命令详解
  18. linux键盘驱动
  19. django序列化单表的4种方法的介绍
  20. 7款易上手C语言编程软件推荐

热门文章

  1. linux Chrome 安装
  2. [CF733D]Kostya the Sculptor(贪心)
  3. Cookie 总结
  4. JAVA GUI设计中遇到的一个小问题
  5. Sencha Toucha之Ext.Ajax
  6. [SAP ABAP开发技术总结]日期函数
  7. LINQ 简单用法【1】
  8. Codeforces Round #286 (Div. 2) B. Mr. Kitayuta&#39;s Colorful Graph dfs
  9. 移动端图表插件jChart.js的修改
  10. java 解析汉字拼音