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.       
目录
相关文章
|
Docker 容器
Gitlab - 解决访问 gitlab 网站出现 502 报错信息的问题
Gitlab - 解决访问 gitlab 网站出现 502 报错信息的问题
894 0
Gitlab - 解决访问 gitlab 网站出现 502 报错信息的问题
|
5月前
|
存储 机器学习/深度学习 数据可视化
结合多模态RAG和异步调用实现大模型内容
文章探讨了如何利用多模态大模型和工程优化手段提升物流理赔业务效率。核心方案包括:通过多模态RAG技术实现图片查重,结合异步调用方法优化货损识别功能。
360 36
结合多模态RAG和异步调用实现大模型内容
|
Go
Golang语言之gRPC程序设计示例
这篇文章是关于Golang语言使用gRPC进行程序设计的详细教程,涵盖了RPC协议的介绍、gRPC环境的搭建、Protocol Buffers的使用、gRPC服务的编写和通信示例。
402 3
Golang语言之gRPC程序设计示例
|
12月前
|
Linux Python
Linux之centos安装clinkhouse以及python如何连接
Linux之centos安装clinkhouse以及python如何连接
列表排序按钮常用方法,实现“向前移动到第一个↑”、“向前移动∧”、“向后移动∨”、“向后移动到最后一个↓”
列表排序按钮常用方法,实现“向前移动到第一个↑”、“向前移动∧”、“向后移动∨”、“向后移动到最后一个↓”
|
机器学习/深度学习 算法 搜索推荐
|
Docker 容器
docker(四):数据卷
docker(四):数据卷
89 0
|
前端开发 网络架构
ES6-ES11-第一部分-let、const、解构赋值、模板字符串、简化对象写法、箭头函数、函数参数默认值、rest 参数、扩展运算符、Symbol、迭代器、生成器、Promise、Set、Map(二)
ES6-ES11-第一部分-let、const、解构赋值、模板字符串、简化对象写法、箭头函数、函数参数默认值、rest 参数、扩展运算符、Symbol、迭代器、生成器、Promise、Set、Map(二)
|
Linux
cmdline(二):uboot cmdline怎么传?&&cmdline kernel怎么用?
cmdline(二):uboot cmdline怎么传?&&cmdline kernel怎么用?
523 0
|
前端开发
带你读《中国零售行业数智化成熟度白皮书》3.2拆解一级指标,明晰零售数智现状(4)
带你读《中国零售行业数智化成熟度白皮书》3.2拆解一级指标,明晰零售数智现状(4)
106 0
带你读《中国零售行业数智化成熟度白皮书》3.2拆解一级指标,明晰零售数智现状(4)