結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ks2mks2m
提出日時 2021-11-12 21:28:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,879 ms / 3,000 ms
コード長 1,175 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 79,400 KB
実行使用メモリ 59,588 KB
最終ジャッジ日時 2024-11-25 12:08:21
合計ジャッジ時間 37,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,772 KB
testcase_01 AC 50 ms
36,712 KB
testcase_02 AC 53 ms
37,020 KB
testcase_03 AC 151 ms
40,700 KB
testcase_04 AC 1,550 ms
57,948 KB
testcase_05 AC 1,765 ms
58,928 KB
testcase_06 AC 1,046 ms
59,092 KB
testcase_07 AC 166 ms
40,684 KB
testcase_08 AC 404 ms
53,796 KB
testcase_09 AC 453 ms
55,324 KB
testcase_10 AC 867 ms
52,852 KB
testcase_11 AC 704 ms
49,356 KB
testcase_12 AC 176 ms
45,056 KB
testcase_13 AC 996 ms
53,980 KB
testcase_14 AC 1,189 ms
55,372 KB
testcase_15 AC 1,079 ms
57,672 KB
testcase_16 AC 1,012 ms
53,844 KB
testcase_17 AC 708 ms
57,168 KB
testcase_18 AC 1,045 ms
57,048 KB
testcase_19 AC 463 ms
49,972 KB
testcase_20 AC 351 ms
47,964 KB
testcase_21 AC 722 ms
56,776 KB
testcase_22 AC 1,053 ms
57,668 KB
testcase_23 AC 1,531 ms
57,848 KB
testcase_24 AC 1,879 ms
59,588 KB
testcase_25 AC 1,590 ms
59,052 KB
testcase_26 AC 1,709 ms
59,516 KB
testcase_27 AC 1,730 ms
58,492 KB
testcase_28 AC 1,793 ms
57,536 KB
testcase_29 AC 1,699 ms
58,904 KB
testcase_30 AC 1,624 ms
59,024 KB
testcase_31 AC 1,691 ms
59,308 KB
testcase_32 AC 1,672 ms
58,572 KB
testcase_33 AC 65 ms
37,304 KB
testcase_34 AC 79 ms
37,784 KB
testcase_35 AC 88 ms
38,588 KB
testcase_36 AC 87 ms
38,332 KB
testcase_37 AC 83 ms
38,316 KB
testcase_38 AC 87 ms
38,872 KB
testcase_39 AC 101 ms
39,700 KB
testcase_40 AC 78 ms
38,416 KB
testcase_41 AC 84 ms
38,644 KB
testcase_42 AC 76 ms
38,084 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;
			}
		}
		System.out.println(ok);
	}
}
0