zoukankan      html  css  js  c++  java
  • A

     

    Problem C: The Dragon of Loowater

    Once upon a time, in the Kingdom of Loowater, a minor nuisance turned into a major problem.

    The shores of Rellau Creek in central Loowater had always been a prime breeding ground for geese. Due to the lack of predators, the geese population was out of control. The people of Loowater mostly kept clear of the geese. Occasionally, a goose would attack one of the people, and perhaps bite off a finger or two, but in general, the people tolerated the geese as a minor nuisance.

    One day, a freak mutation occurred, and one of the geese spawned a multi-headed fire-breathing dragon. When the dragon grew up, he threatened to burn the Kingdom of Loowater to a crisp. Loowater had a major problem. The king was alarmed, and called on his knights to slay the dragon and save the kingdom.

    The knights explained: "To slay the dragon, we must chop off all its heads. Each knight can chop off one of the dragon's heads. The heads of the dragon are of different sizes. In order to chop off a head, a knight must be at least as tall as the diameter of the head. The knights' union demands that for chopping off a head, a knight must be paid a wage equal to one gold coin for each centimetre of the knight's height."

    Would there be enough knights to defeat the dragon? The king called on his advisors to help him decide how many and which knights to hire. After having lost a lot of money building Mir Park, the king wanted to minimize the expense of slaying the dragon. As one of the advisors, your job was to help the king. You took it very seriously: if you failed, you and the whole kingdom would be burnt to a crisp!

    Input Specification:

    The input contains several test cases. The first line of each test case contains two integers between 1 and 20000 inclusive, indicating the number n of heads that the dragon has, and the number m of knights in the kingdom. The next n lines each contain an integer, and give the diameters of the dragon's heads, in centimetres. The following m lines each contain an integer, and specify the heights of the knights of Loowater, also in centimetres.

    The last test case is followed by a line containing:

    0 0
    

    Output Specification:

    For each test case, output a line containing the minimum number of gold coins that the king needs to pay to slay the dragon. If it is not possible for the knights of Loowater to slay the dragon, output the line:

    Loowater is doomed!
    

    Sample Input:

    2 3
    5
    4
    7
    8
    4
    2 1
    5
    5
    10
    0 0
    

    Output for Sample Input:

    11
    Loowater is doomed!
    

    Ondřej Lhoták

     

    题解

    自然要让能力值即低又能砍掉怪兽的头的骑士去砍那个相应的头。也就是贪心算法。

     1 #include<stdio.h>
     2 int as[20010],b[20010];
     3 void sortquickly(int a[],int lenth)
     4 {
     5     int mid;
     6     mid = a[0];
     7     int i,j;
     8     i=0;
     9     j=lenth-1;
    10     if(lenth>1)
    11     {
    12         while(i<j)
    13         {
    14             for(;j>i;j--)
    15             {
    16                 if(a[j]<mid)
    17                 {
    18                     a[i++]=a[j];
    19                     break;
    20                 }
    21             }
    22             for(;i<j;i++)
    23             {
    24                 if(a[i]>mid)
    25                 {
    26                     a[j--]=a[i];
    27                     break;
    28                 }
    29             }
    30         }
    31         a[i]=mid;
    32         sortquickly(a,i);
    33         sortquickly(a+i+1,lenth-i-1);
    34     }
    35 }
    36 
    37 void jisuan(int n,int m)
    38 {
    39     int i,t=0,sum=0,k=0;;
    40     if(n>m) printf("Loowater is doomed!
    ");
    41     else {
    42         for(i=0;i<n;i++)
    43         {
    44             for(;t<m;t++)
    45             {
    46                 if(b[t]>=as[i]){
    47                     sum=sum+b[t];
    48                     t++;
    49                     k++;
    50                     break;
    51                 }
    52             }
    53         }
    54         if(k==n)printf("%d
    ",sum);
    55         else printf("Loowater is doomed!
    ");
    56     }
    57 }
    58 int main()
    59 {
    60     int i,n,m;
    61     while(1){
    62     scanf("%d%d",&n,&m);
    63     if(n==0&&m==0)break;
    64     for(i=0;i<n;i++)
    65         scanf("%d",&as[i]);
    66     for(i=0;i<m;i++)
    67         scanf("%d",&b[i]);
    68     sortquickly(as,n);
    69     sortquickly(b,m);
    70     jisuan(n,m);
    71     }
    72     return 0;
    73 }
     
  • 相关阅读:
    lucene学习-创建索引
    ExtJs学习-搭建开发环境
    Struts2上传文件(1)
    使用USBWriter做U盘启动盘后U盘在盘中不显示的解决办法(轉載)
    家里旧电脑装了centos7實踐思路
    win7/win10下装centos7双系统(转载)
    美区google play礼品卡,如何正确充值到美区google play余额,并能购买游戏道具
    excel 2016 打开UTF-8编码CSV文件乱码的问题UTF-8编码CSV文件乱码的问题
    python3 writerow CSV文件多一个空行
    python3 UnicodeEncodeError: 'gbk' codec can't encode character 'xa0' in position 4400: illegal multibyte sequence
  • 原文地址:https://www.cnblogs.com/dongq/p/4165427.html
Copyright © 2011-2022 走看看