A - Dragon of Loowater

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!\n");
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\n",sum);
55         else printf("Loowater is doomed!\n");
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 }
时间: 2024-08-02 18:32:15

A - Dragon of Loowater的相关文章

UVA 11292 Dragon of Loowater(简单贪心)

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 predato

[2016-03-14][UVA][11292][Dragon of Loowater]

时间:2016-03-14 19:50:12 星期一 题目编号:[2016-03-14][UVA][11292][Dragon of Loowater] 题目大意: 有m个骑士要砍n条龙,每个骑士能看掉龙的头颅当且仅当其实的能力值大于龙的头的直径,每个其实砍掉一条龙需要付出数值上等于能力值的代价,问m个骑士能否砍完所有龙,能则输出最小代价,否则输出"Loowater is doomed!" 输入: 多组数据 每组数据 n m n行 龙头的直径 m行 骑士的能力值 输出: 如果能砍完所有

UVA之11292 Dragon of Loowater

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 predato

UVA11292 HDU1902 POJ3646 Dragon of Loowater

问题链接:UVA11292 HDU1902 POJ3646 Dragon of Loowater. 这个问题是一个典型的贪心法问题,求代价最小. 由于需要用到排序函数,C++的排序函数参数比较简单,所以用C++编程. AC通过的C++语言程序如下: /* UVA11292 HDU1902 POJ3646 Dragon of Loowater */ #include <cstdio> #include <algorithm> using namespace std; #define

UVa 11292 Dragon of Loowater

1 /*UVa 11292 Dragon of Loowater*/ 2 #include<iostream> 3 #include<cstdio> 4 #include<cmath> 5 #include<algorithm> 6 using namespace std; 7 int n,m; 8 int main(){ 9 while(scanf("%d%d",&n,&m) && n!=0 &&

·UVa」 11292 - Dragon of Loowater( 贪心 )

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 predato

The Dragon of Loowater

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 gee

[UVA] 11292 - Dragon of Loowater [贪心+队列]

Problem C: The Dragon of Loowater Time limit: 1.000 seconds 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.

Dragon of Loowater

Dragon of Loowater Time Limit: 1000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu [Submit]   [Go Back]   [Status] Description Problem C: The Dragon of Loowater Once upon a time, in the Kingdom of Loowater, a minor nuisance turned into a ma

UVA它11292 - Dragon of Loowater

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 predato