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 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!


[cpp]  view plain copy
  1. /********************************* 
  2. *   日期:2013-4-19 
  3. *   作者:SJF0115 
  4. *   题号: 题目11292 - Dragon of Loowater 
  5. *   来源:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=2267 
  6. *   结果:AC 
  7. *   来源:UVA 
  8. *   总结: 
  9. **********************************/  
  10. #include<stdio.h>  
  11. #include<stdlib.h>  
  12.   
  13. int Dragon[20001],Knights[20001];  
  14. //排序函数  
  15. int cmp(const void *a,const void *b){  
  16.     return *(int *)a - *(int *)b;  
  17. }  
  18.   
  19. int main ()  
  20. {  
  21.     int i,j,N,M,cost,index;  
  22.     //freopen("C:\\Users\\XIAOSI\\Desktop\\acm.txt","r",stdin);    
  23.     while(scanf("%d %d",&N,&M) != EOF){  
  24.         if(N == 0 && M == 0){  
  25.             break;  
  26.         }  
  27.         //金币  
  28.         cost = 0;  
  29.         index = 0;  
  30.         //头  
  31.         for(i = 0;i < N;i++){  
  32.             scanf("%d",&Dragon[i]);  
  33.         }  
  34.         //勇士  
  35.         for(i = 0;i < M;i++){  
  36.             scanf("%d",&Knights[i]);  
  37.         }  
  38.         //排序  
  39.         qsort(Dragon,N,sizeof(int),cmp);  
  40.         qsort(Knights,M,sizeof(int),cmp);  
  41.         //贪心  
  42.         for(i = 0;i < M;i++){  
  43.             if(index >= N){  
  44.                 break;  
  45.             }  
  46.             if(Knights[i] >= Dragon[index]){  
  47.                 //统计所花金币  
  48.                 cost += Knights[i];  
  49.                 index++;  
  50.             }  
  51.         }  
  52.         //输出  
  53.         if(index >= N){  
  54.             printf("%d\n",cost);  
  55.         }  
  56.         else{  
  57.             printf("Loowater is doomed!\n");  
  58.         }  
  59.     }  
  60.     return 0;  
  61. }  
  62.   
  63.       
目录
相关文章
Uva10001 Garden of Eden
Uva10001 Garden of Eden
48 0
|
BI 人工智能
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.
1095 0
|
机器学习/深度学习
|
机器学习/深度学习
uva 11538 Chess Queen
点击打开链接 题意:给定一个n*m的矩阵,问有多少种方法放置两个相互攻击的皇后?规定在同一行同一列和同对角线的能够相互攻击 思路: 1 先考虑同一行的情况,n行就有n种情况,每一行有m*(m-1)种,总的是n*m*(m-1); 2 考虑同...
822 0
|
BI 人工智能
uva11292 - Dragon of Loowater
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&amp;Itemid=8&amp;page=show_problem&amp;problem=2267 将骑士和龙头都按升序排序,按顺序如果骑士值大于所有龙头则可以继续,如果可以杀掉所有龙头则输出骑士和否则不行。 #include&lt;iostream&gt;
1115 0
hdu 3635 Dragon Balls
点击打开hdu 3635 思路: 并查集 分析: 1 题目说有n个城市每一个城市有一个龙珠编号为i,现在有m行的输入包括两种的情况 T x y 把x所在的集合的所以龙珠转移到y集合上 Q x 询问x所在集合的龙珠的个数 2 我们利用rank[x]表示的是根节点为x的集合的元素的个数,但是现在我们发现求转移的次数不好求,刚开始我用的是一个vector数组来保存,比如v[x]表示以x为根节点的集合的元素,那么如果是把fx这个集合并到fy上的话,那么我们枚举v[fx]。
903 0
|
C++
uva 11136 Hoax or what
点击打开链接uva 11136 思路: STL 分析: 1 题目意思比较不好理解,理解了题目之后我们可以利用STL的multiset来做 2 每次找到最大和最小的值,然后求解即可 代码: #include #include #in...
848 0