HDU 1052 田忌赛马(贪心)

来源:互联网 发布:mysql修改列名 语句 编辑:程序博客网 时间:2024/05/16 13:54
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
392 83 7195 87 74220 2020 20220 1922 180
 

Sample Output
20000

题意:

田忌和齐王各有N匹马,判断怎样比赛,使田忌净胜场数最多。

我感觉这题的精髓就是,不管怎么比赛,都要让田忌的马发挥最大价值。

当然,马的第一要务是用来赢得比赛,而且要最大效益的赢,也就是要赢对方仅次于自己的马。

当他不能完成这个任务的时候就要去输,并拉对方最快的马下水,给自己后面的队友创造更大的胜利机会。

解题思路:

1.若田忌最慢的马可以战胜齐王最慢的马,那么就让它战胜那匹慢马,胜利场次加1。(田忌最慢马 > 齐王最慢马)

2.若田忌最慢的马不能战胜齐王最慢的马,那么它更加不能战胜其他的马,那就让它输,而且输给齐王最快马,失败场次加1。(田忌最慢马 < 齐王最快马)

3.若田忌最慢的马与齐王最慢的马速度相等。此时,不能简单地认为与它打成平手就是最好情况,相反,打平是下下策,为什么呢?

因为自己后面的队友很有可能战胜此时对方的这匹慢马,所以就算自己输一场,队友也能帮忙赢回一场,而胜一场,输一场的收益和打平一场的收益是一样的,而且自己输的时候可以拉对方最快的马下水,给己方最快的马创造更大的胜利机会(因为它失去了一个强劲的对手),也就是说己方最快的马很可能因为自己的牺牲再胜利一场,从这个角度看,还是自己故意输掉比较好。

但是,还有一点需要注意,当自己放水前,如果己方最快的马原本就比对方最快的马快,然后还输给对方最快的马,那么己方最快的马的才华就浪费了,为什么?

很简单,它原本就能赢,需要你放水么?- -!换句话说,这种情况下,自己的牺牲没有一点价值。

所以,在放水时,一定要保证己方最快马不快于对方最快马。满足此条件后,让己方最慢马与对方最快马去比赛(有可能平局),这样,田忌的马就得到了充分的利用。

代码
import java.util.Scanner;public class hdu1052 {/** * @param args */static int t[]=new int[1000+5];static int g[]=new int[1000+5];public static void main(String[] args) {// TODO Auto-generated method stubScanner scan=new Scanner(System.in);int n,slow_t,slow_g,fast_t,fast_g,ans;while(((n=scan.nextInt())!=0)){ans=0;fast_t=n-1;fast_g=n-1;slow_t=0;slow_g=0;for(int i=0;i<n;i++){t[i]=scan.nextInt();}for(int i=0;i<n;i++){g[i]=scan.nextInt();}//排序sort(t,g,n); while(slow_t<=fast_t){if(t[slow_t]>g[slow_g]){//第一种情况 当自己最慢的马比对方最慢的马快ans++;slow_t++;slow_g++;}else if(t[slow_t]<g[slow_g]){//第二种情况当自己最慢的马比对方最慢的马大时 让自己的马体现最大价值 去
                                   耗掉对方最快的马ans--;slow_t++;fast_g--;}else{//第三种情况 当自己最慢的马跟对方一样时 if(t[fast_t]>g[fast_g]){ans++;fast_t--;fast_g--;}else{if(t[slow_t]<g[fast_g]){ans--;}slow_t++;fast_g--;}}}System.out.println(ans*200);   }}private static void sort(int[] t2, int[] g2, int n) {// TODO Auto-generated method stubfor(int i=0;i<n-1;i++){for(int j=0;j<n-1-i;j++){if(t2[j]>t2[j+1]){int temp=t2[j];t2[j]=t2[j+1];t2[j+1]=temp;}if(g2[j]>g2[j+1]){int temp=g2[j];g2[j]=g2[j+1];g2[j+1]=temp;}}}}}




 

原创粉丝点击