现在的位置: 首页 > 综合 > 正文

UVa 11292 The Dragon of Loowater 简单的比较题

2014年09月05日 ⁄ 综合 ⁄ 共 2506字 ⁄ 字号 评论关闭
文章目录

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

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

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

The knights explained: "To slay the dragon, we must chop off all itsheads. Each knight can chop off one of the dragon's heads. The headsof 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 knightmust be paid a wage equal to one gold coin for each centimetreof the knight's height."

Would there be enough knights to defeat the dragon? The king called onhis advisors to help him decide how many and which knights to hire.After having lost a lot of money building Mir Park, the king wantedto 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 casecontains two integers between 1 and 20000 inclusive, indicating thenumbern of heads that the dragon has, and the number
mof knights in the kingdom. The nextn lines each contain aninteger, and give the diameters of the dragon's heads, in centimetres.The followingm lines each contain an integer, and specifythe 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 ofgold coins that the king needs to pay to slay the dragon. If it is notpossible for the knights of Loowater to slay the dragon, output theline:

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!

#include <stdio.h>
#include <stdlib.h>
#define MAX 20005
int nVal[MAX], mVal[MAX];

int cmp(const void *a, const void *b)
{
	return *(int *)a - *(int *)b;
}

int main()
{

	int n, m, i, j, sum;
	while(1)
	{
	scanf("%d %d", &n, &m);
	if(n==0 && m==0) break;
	for(i=0; i < n; i++)
		scanf("%d", &nVal[i]);
	for(i=0; i < m; i++)
		scanf("%d", &mVal[i]);
	qsort(nVal, n, sizeof(int), cmp);	
	qsort(mVal, m, sizeof(int), cmp);	
	for(i=0,j=0, sum=0; i <  m; i++)
	{
		if(mVal[i]>=nVal[j])
		{
			j++;
			sum += mVal[i];
		}
		if(j==n) break;
	}
	if(j!=n)
		printf("Loowater is doomed!\n");
	else 
		printf("%d\n", sum);
	}
	return 0;
}

 

抱歉!评论已关闭.