zoukankan      html  css  js  c++  java
  • D

    贪心,典型,有意思

     

     

    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
     
    题解
     
    这是一个贪心算法,首先就是进行排序(由大到小),然后进行比较。
    分2种
    1,当最快的两匹马速度不同时,比较好解决,略过。
    2,当最快的两匹马速度相同时,看没跑过的最慢的两匹马,若田忌的快,则这两匹直接比较,再进行以上工作,直至找出田忌的马不大于齐王的,让这匹马与齐王最快的马进行比较。
     
     
     1 #include<stdio.h>
     2 int tian[1010],q[1010];
     3 void paixu(int a[],int n)
     4 {
     5     int i=0,j=n-1;
     6     int t=a[0];
     7     if(n>1){
     8         while(i<j)
     9         {
    10             for(;i<j;j--)
    11             if(a[j]>t){
    12                 a[i++]=a[j];
    13                 break;
    14             }
    15             for(;i<j;i++)
    16             {
    17                 if(a[i]<t){
    18                     a[j--]=a[i];
    19                     break;
    20                 }
    21             }
    22         }
    23         a[i]=t;
    24         paixu(a,i);
    25         paixu(a+i+1,n-i-1);
    26     }
    27 }
    28 void fun(int t[],int q[],int n)
    29 {
    30     int i=0,g=n-1,k=n-1,h=0,sum=0;
    31     for(;i<=k;i++)
    32     {
    33         if(q[i]<t[h]){
    34             sum=sum+200;
    35             h++;
    36         }
    37         else if(q[i]>t[h])
    38         {
    39             sum=sum-200;
    40             g--;
    41         }
    42 
    43             else {
    44                 for(;t[g]>q[k];g--,k--)
    45                     sum=sum+200;
    46                 if(q[i]>t[g])
    47                 {
    48                     sum=sum-200;
    49                     g--;
    50                 }
    51                 else {
    52                     g--;
    53                 }
    54                 }
    55     }
    56     printf("%d
    ",sum);
    57 }
    58 int main()
    59 {
    60     int i,n;
    61     while(scanf("%d",&n)!=EOF&&n)
    62     {
    63         for(i=0;i<n;i++)
    64             scanf("%d",&tian[i]);
    65         for(i=0;i<n;i++)
    66             scanf("%d",&q[i]);
    67         paixu(tian,n);
    68         paixu(q,n);
    69         fun(tian,q,n);
    70     }
    71     return 0;
    72 }
  • 相关阅读:
    Java初学者:for循环介绍
    Java初学者:条件判断及其语句
    Java初学者:基本数据类型的强制类型转换
    eclipse+gradle+nodejs搭建web开发环境
    桑基图(sankey)
    tomcat性能优化
    数据库概览与选择
    在linux上装 postgresql 在 windows或 linux 连不上的问题的解决方法
    mosquitto的TLS功能测试,客户端使用paho.mqtt.golang(附JAVA版客户端实现)
    两步使用arm-linux-androideabi-addr2line定位JNI动态库中C代码错误位置
  • 原文地址:https://www.cnblogs.com/dongq/p/4173672.html
Copyright © 2011-2022 走看看