結果

問題 No.1736 Princess vs. Dragoness
ユーザー matcharate12matcharate12
提出日時 2022-01-05 19:50:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 168,096 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 00:16:46
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 6 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 6 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 5 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,a,b) for(int i = (a); i < (b); i++)
#define all(A) (A).begin(),(A).end()
#define MOD 1000000007
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;

int main(void){
	int n,a,b,x,y; cin >> n >> a >> b >> x >> y;
	vector<int> H(n); rep(i,0,n) cin >> H[i];
	sort(all(H),greater<int>());

	int ca = a,cb = b;
	rep(i,0,n){
		while(ca && H[i] > 0){
			H[i] -= x;
			ca--;
		}
	}
	rep(i,0,n){
		if(cb){
			int p = y;
			rep(j,0,n){
				if(H[j] <= 0) continue;
				else {
					int d = min(p,H[j]);
					H[j] -= d;
					p -= d;
				}
			}
			cb--;
		}
	}
	bool ok = true;
	rep(i,0,n){
		if(H[i] > 0) ok = false;
	}
	cout << (ok ? "Yes" : "No");
}
0