Tian Ji -- The Horse Racing

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

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
 
 贪心题:田忌赛马----田忌和齐王各有n匹马,每匹马都得比赛,赢一局赢200,输一局输200,问怎么比才能使田忌赢得的金钱最多?
 
要想赢得最多,田忌应该采取避其锋芒的策略,首先将二者的所有马匹按从大到小的顺序排列,然后采取以下规则:
如果田忌最快的马比齐王最快的马快,则pk掉,田忌赢一局;
如果田忌最快的马比齐王最快的马慢,则用田忌最慢的马pk齐王最快的马,田忌输一局;
否则的话,
  如果田忌最慢的马比齐王最慢的马快,则pk掉,田忌赢一局;
  如果田忌最慢的马比齐王最慢的马慢,则用田忌最慢的马pk齐王最快的马,田忌输一局;
  如果田忌最快的马与最慢马和齐王最快的马与最慢的马都相等,则用田忌最慢的马pk齐王最快的马。
 
 #include<iostream>
#include<algorithm>
using namespace std;
#define N 1005
int tian[N],king[N]; int cmp(int a,int b)
{
return a>b;
}
int main()
{
int n, i, j;
int counts, i1, j1;
while(cin>>n && n)
{
for(i=; i<n; i++)
cin>>tian[i];
for(i=; i<n; i++)
cin>>king[i];
sort(tian,tian+n,cmp);
sort(king,king+n,cmp);
counts = ;
i = i1 = ;
j = j1 = n-;
while(i<=j)
{
if(tian[i]>king[i1]) //田忌最快的马比齐王最快的马快
{
counts++;
i++;
i1++;
}
else if(tian[i]<king[i1]) //田忌最快的马比齐王最快的马慢
{
counts--;
j--;
i1++;
}
else
{
if(tian[j]>king[j1]) //田忌最慢的马比齐王最慢的马快
{
counts++;
j--;
j1--;
}
else if(tian[j]<king[j1]) //田忌最慢的马比齐王最慢的马慢
{
counts--;
j--;
i1++;
}
else
{
if(tian[j] != king[i1]) //田忌最慢的马和齐王最快的马不相等
counts--;
j--;
i1++;
}
}
}
cout<<counts*<<endl;
}
return ;
}

Hdu 1052 Tian Ji -- The Horse Racing的更多相关文章

  1. HDU 1052 Tian Ji -- The Horse Racing (贪心)(转载有修改)

    Tian Ji -- The Horse Racing Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (J ...

  2. HDU 1052 Tian Ji -- The Horse Racing【贪心在动态规划中的运用】

    算法分析: 这个问题很显然可以转化成一个二分图最佳匹配的问题.把田忌的马放左边,把齐王的马放右边.田忌的马A和齐王的B之间,如果田忌的马胜,则连一条权为200的边:如果平局,则连一条权为0的边:如果输 ...

  3. hdu 1052 Tian Ji -- The Horse Racing (田忌赛马)

    Tian Ji -- The Horse Racing Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (J ...

  4. HDU 1052 Tian Ji -- The Horse Racing(贪心)(2004 Asia Regional Shanghai)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1052 Problem Description Here is a famous story in Ch ...

  5. hdu 1052 Tian Ji -- The Horse Racing【田忌赛马】

    题目 这道题主要是需要考虑到各种情况:先对马的速度进行排序,然后分情况考虑: 1.当田忌最慢的马比国王最慢的马快则赢一局 2.当田忌最快的马比国王最快的马快则赢一局 3.当田忌最快的马比国王最快的马慢 ...

  6. HDU 1052 Tian Ji -- The Horse Racing(贪心)

    题目来源:1052 题目分析:题目说的权值匹配算法,有点误导作用,这道题实际是用贪心来做的. 主要就是规则的设定: 1.田忌最慢的马比国王最慢的马快,就赢一场 2.如果田忌最慢的马比国王最慢的马慢,就 ...

  7. 杭州电 1052 Tian Ji -- The Horse Racing(贪婪)

    http://acm.hdu.edu.cn/showproblem.php? pid=1052 Tian Ji -- The Horse Racing Time Limit: 2000/1000 MS ...

  8. hdoj 1052 Tian Ji -- The Horse Racing【田忌赛马】 【贪心】

    思路:先按从小到大排序, 然后从最快的開始比(如果i, j 是最慢的一端, flag1, flag2是最快的一端 ),田的最快的大于king的 则比較,如果等于然后推断,有三种情况: 一:大于则比較, ...

  9. hdu1052 Tian Ji -- The Horse Racing 馋

    转载请注明出处:http://blog.csdn.net/u012860063 题目链接:pid=1052">http://acm.hdu.edu.cn/showproblem.php ...

随机推荐

  1. 【BFS】POJ 2251

    POJ 2251 Dungeon Master 题意:有一个地图,三维,走的方向是上下,左右,前后.问你最小步数从起始点走到出口. 思路:三维的BFS,就是多加一组状态,需要细心(不细心如我就找了半个 ...

  2. 【DP】POJ 2385

    题意:又是Bessie 这头牛在折腾,这回他喜欢吃苹果,于是在两棵苹果树下等着接苹果,但苹果不能落地后再接,吃的时间不算,假设他能拿得下所有苹果,但是这头牛太懒了[POJ另一道题目说它是头勤奋的奶牛, ...

  3. 【MongoDB:第二天】基本操作

    接上一篇博客: http://www.cnblogs.com/xiaoit/p/3867573.html 1:插入新的数据 db.person.insert({"uid" : 12 ...

  4. php获取实时汇率数据

    支付时常常会用到支付汇率,但汇率数据是实时的,没办法首先设定好,为避免亏损,只能做到实时的了,先推荐个php函数,能实时获取汇率数据.需要curl模块支持. function getExchangeR ...

  5. 03.深入javascript

    函数返回值 函数返回值和函数传参正好相反,函数传参是我们可以把一些东西传到函数里面去,函数返回值是函数可以把一些东西传到外面来. <script> function show() { re ...

  6. 使用C#模拟Outlook发送邮件,代码编译报错

    添加OutLook API using OutLook = Microsoft.Office.Interop.Outlook; 发送邮件方法 public void SendEmail() { Out ...

  7. C中嵌入python

    嵌入 与python的扩展相对,嵌入是把Python解释器包装到C的程序中.这样做可以给大型的,单一的,要求严格的,私有的并且(或者)极其重要的应用程序内嵌Python解释器的能力.一旦内嵌了Pyth ...

  8. C# 动态调用webservice

    最近项目中,用到动态调用webservice的内容,此处记录下来,留着以后COPY(我们只需要在XML,config文件,或者数据库中配置webservice连接地址和方法名即可使用): using ...

  9. ajax返回json在 IE下,提示打开或保存的解决方法

    Content-type要设置成 text/html 我是用的mvc jquery.form.js 提交的表单. 返回json响应数据. 结果在ie下提示打开或保存,查看保存的内容.就是我返回的jso ...

  10. Kafka 解析

    Kafak采用硬盘顺序写入和内存映射文件技术提示性能.即便是顺序写入硬盘,硬盘的访问速度还是不可能追上内存.所以Kafka的数据并不是实时的写入硬盘,它充分利用了现代操作系统分页存储来利用内存提高I/ ...