結果

問題 No.1736 Princess vs. Dragoness
ユーザー ks2mks2m
提出日時 2021-11-12 21:29:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 79,268 KB
実行使用メモリ 47,708 KB
最終ジャッジ日時 2024-11-25 12:09:16
合計ジャッジ時間 8,357 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,748 KB
testcase_01 AC 53 ms
37,096 KB
testcase_02 AC 53 ms
37,096 KB
testcase_03 AC 109 ms
39,576 KB
testcase_04 AC 148 ms
40,724 KB
testcase_05 AC 102 ms
38,592 KB
testcase_06 AC 154 ms
42,908 KB
testcase_07 AC 181 ms
44,032 KB
testcase_08 AC 165 ms
41,668 KB
testcase_09 AC 158 ms
42,780 KB
testcase_10 AC 88 ms
38,352 KB
testcase_11 AC 234 ms
45,420 KB
testcase_12 AC 141 ms
41,248 KB
testcase_13 AC 157 ms
42,948 KB
testcase_14 AC 147 ms
42,820 KB
testcase_15 AC 122 ms
40,732 KB
testcase_16 AC 127 ms
40,880 KB
testcase_17 AC 160 ms
42,732 KB
testcase_18 AC 164 ms
43,096 KB
testcase_19 AC 149 ms
47,708 KB
testcase_20 AC 109 ms
40,184 KB
testcase_21 AC 164 ms
42,176 KB
testcase_22 AC 179 ms
42,516 KB
testcase_23 AC 142 ms
41,068 KB
testcase_24 AC 82 ms
37,652 KB
testcase_25 AC 134 ms
40,412 KB
testcase_26 AC 164 ms
42,264 KB
testcase_27 AC 157 ms
42,516 KB
testcase_28 AC 138 ms
40,852 KB
testcase_29 AC 117 ms
41,160 KB
testcase_30 AC 150 ms
41,236 KB
testcase_31 AC 172 ms
42,824 KB
testcase_32 AC 169 ms
42,220 KB
testcase_33 AC 54 ms
37,000 KB
testcase_34 AC 52 ms
36,752 KB
testcase_35 AC 54 ms
37,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Collections;
import java.util.PriorityQueue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int a = Integer.parseInt(sa[1]);
		int b = Integer.parseInt(sa[2]);
		int x = Integer.parseInt(sa[3]);
		int y = Integer.parseInt(sa[4]);
		sa = br.readLine().split(" ");
		long[] h = new long[n];
		for (int i = 0; i < n; i++) {
			h[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long yb = (long) y * b;
		long ok = 1000000000000000L;
		long ng = -1;
		while (Math.abs(ok - ng) > 1) {
			long mid = (ok + ng) / 2;
			PriorityQueue<Long> que = new PriorityQueue<>(Collections.reverseOrder());
			for (int i = 0; i < n; i++) {
				que.add(Math.max(h[i] - mid, 0));
			}
			for (int i = 0; i < a; i++) {
				que.add(Math.max(que.poll() - x, 0));
			}
			long sum = 0;
			for (long e : que) {
				sum += e;
			}
			if (sum <= yb) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		if (ok == 0) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0