UVA11292 Dragon of Loowate 模擬
阿新 • • 發佈:2018-12-15
題意翻譯
你的王國裡有一條n個頭的惡龍,你希望僱傭一些騎士把它殺死(即砍掉所有頭)。村裡有m個騎士可以僱傭,一個能力值為x的騎士可以砍掉惡龍一個直徑不超過x的頭,且需要支付x個金幣。如何僱傭騎士才能砍掉龍的所有頭,且需要支付的金幣最少?注意,一個騎士只能砍一個頭。(且不能被僱傭兩次)。 輸入格式
輸入包含多組資料。每組資料的第一行為正整數n和m(1<=n,m<=20000);以下n行每行為一個整數,即惡龍每個頭的直徑;以下m行每行為一個整數,即每個騎士的能力。輸入結束標誌為n=m=0。 輸出格式
對於每組資料,輸出最小花費。如果無解,輸出“Loowater is doomed!”。
感謝@ACdreamer 提供的翻譯 題目描述
輸入輸出格式 輸入格式:
輸出格式:
輸入輸出樣例 輸入樣例#1: 複製
2 3 5 4 7 8 4 2 1 5 5 10 0 0
輸出樣例#1: 複製
11 Loowater is doomed!
排序然後 O( N )掃一遍即可,簽到題難度
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include <map>
#include<set>
#include<vector>
#include<queue>
#include<bitset>
#include<ctime>
#include<deque>
#include<stack>
#include<functional>
#include<sstream>
//#include<cctype>
//#pragma GCC optimize("O3")
using namespace std;
#define maxn 300005
#define inf 0x3f3f3f3f
#define INF 2147480000
#define rdint(x) scanf("%d",&x)
#define rdllt(x) scanf("%lld",&x)
typedef long long ll;
typedef unsigned long long ull;
typedef unsigned int U;
#define ms(x) memset((x),0,sizeof(x))
const int mod = 10000007;
#define Mod 20100403
#define sq(x) (x)*(x)
#define eps 1e-7
typedef pair<int, int> pii;
#define pi acos(-1.0)
const int N = 1005;
inline int rd() {
int x = 0;
char c = getchar();
bool f = false;
while (!isdigit(c)) {
if (c == '-') f = true;
c = getchar();
}
while (isdigit(c)) {
x = (x << 1) + (x << 3) + (c ^ 48);
c = getchar();
}
return f ? -x : x;
}
ll gcd(ll a, ll b) {
return b == 0 ? a : gcd(b, a%b);
}
ll sqr(ll x) { return x * x; }
int n, m;
int a[maxn], b[maxn];
int main()
{
//ios::sync_with_stdio(false);
while (cin >> n >> m && n || m) {
ms(a); ms(b);
for (int i = 1; i <= n; i++)rdint(a[i]);
for (int i = 1; i <= m; i++)rdint(b[i]);
if (m < n) {
cout << "Loowater is doomed!" << endl; continue;
}
else {
sort(a + 1, a + 1 + n); sort(b + 1, b + 1 + m);
int i, j;
int tot = 0;
i = 1; j = 1;
while (i <= n && j <= m) {
if (a[i] <= b[j]) {
tot += b[j]; i++; j++;
}
else {
while (a[i] > b[j])j++;
}
}
if (j > m&&i < n) {
cout << "Loowater is doomed!" << endl;
}
else {
cout << tot << endl;
}
}
}
return 0;
}