大水题:
给n条龙和m个骑士的身高。如果一个骑士比一条龙高,那么这个骑士就能杀死这条龙(不能再杀其他的龙),并且得消耗这个骑士这么高的价钱。
问能否杀掉所有的龙,如果有的话,最少消耗多少钱。
思路:如题。。排序。。。遍历。。
#include <cstdio>
#include <algorithm>
using namespace std;
#define N 20005
int n, m, i, j, ans;
int d[N], k[N];
int main()
{
while (scanf("%d%d",&n,&m),n,m)
{
i = j = 0;
while (i != n) scanf("%d",&d[i++]);
while (j != m) scanf("%d",&k[j++]);
sort(d, d+n);
sort(k, k+m);
ans = i = j = 0;
while (i!=n && j!=m)
{
if (k[j] >= d[i])
{
i ++;
ans += k[j];
}
j ++;
}
if (i != n) printf("Loowater is doomed!\n");
else printf("%d\n", ans);
}
}