結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,280 KB
testcase_01 AC 50 ms
37,260 KB
testcase_02 AC 51 ms
37,300 KB
testcase_03 AC 156 ms
40,808 KB
testcase_04 AC 1,474 ms
59,116 KB
testcase_05 AC 1,814 ms
58,948 KB
testcase_06 AC 1,123 ms
58,756 KB
testcase_07 AC 168 ms
40,632 KB
testcase_08 AC 395 ms
54,464 KB
testcase_09 AC 499 ms
55,408 KB
testcase_10 AC 877 ms
52,896 KB
testcase_11 AC 666 ms
49,296 KB
testcase_12 AC 154 ms
44,948 KB
testcase_13 AC 1,006 ms
53,816 KB
testcase_14 AC 1,058 ms
58,612 KB
testcase_15 AC 985 ms
57,428 KB
testcase_16 AC 1,001 ms
53,976 KB
testcase_17 AC 675 ms
57,512 KB
testcase_18 AC 1,280 ms
57,384 KB
testcase_19 AC 497 ms
50,036 KB
testcase_20 AC 348 ms
48,112 KB
testcase_21 AC 656 ms
57,320 KB
testcase_22 AC 1,139 ms
55,432 KB
testcase_23 AC 1,556 ms
57,396 KB
testcase_24 AC 1,835 ms
58,544 KB
testcase_25 AC 1,625 ms
58,440 KB
testcase_26 AC 1,619 ms
58,992 KB
testcase_27 AC 1,604 ms
58,320 KB
testcase_28 AC 1,589 ms
58,896 KB
testcase_29 AC 1,739 ms
59,420 KB
testcase_30 AC 1,647 ms
58,224 KB
testcase_31 AC 1,667 ms
59,420 KB
testcase_32 AC 1,831 ms
57,460 KB
testcase_33 AC 60 ms
37,416 KB
testcase_34 AC 83 ms
38,464 KB
testcase_35 AC 91 ms
38,420 KB
testcase_36 AC 90 ms
38,324 KB
testcase_37 AC 82 ms
38,096 KB
testcase_38 AC 83 ms
38,440 KB
testcase_39 AC 111 ms
40,132 KB
testcase_40 AC 78 ms
38,352 KB
testcase_41 AC 88 ms
38,824 KB
testcase_42 AC 76 ms
38,564 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