結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-11-12 22:11:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,501 ms / 3,000 ms
コード長 850 bytes
コンパイル時間 4,165 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 58,692 KB
最終ジャッジ日時 2024-05-04 09:05:51
合計ジャッジ時間 38,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,808 KB
testcase_01 AC 134 ms
41,436 KB
testcase_02 AC 135 ms
41,380 KB
testcase_03 AC 129 ms
41,288 KB
testcase_04 AC 1,357 ms
58,468 KB
testcase_05 AC 1,402 ms
58,448 KB
testcase_06 AC 897 ms
57,428 KB
testcase_07 AC 137 ms
41,268 KB
testcase_08 AC 1,034 ms
49,000 KB
testcase_09 AC 1,213 ms
53,300 KB
testcase_10 AC 780 ms
48,320 KB
testcase_11 AC 723 ms
48,292 KB
testcase_12 AC 314 ms
47,996 KB
testcase_13 AC 1,088 ms
51,856 KB
testcase_14 AC 1,096 ms
52,920 KB
testcase_15 AC 1,383 ms
58,476 KB
testcase_16 AC 729 ms
48,476 KB
testcase_17 AC 934 ms
48,784 KB
testcase_18 AC 829 ms
48,652 KB
testcase_19 AC 695 ms
48,288 KB
testcase_20 AC 609 ms
48,032 KB
testcase_21 AC 1,083 ms
50,896 KB
testcase_22 AC 1,203 ms
57,248 KB
testcase_23 AC 1,459 ms
58,668 KB
testcase_24 AC 1,345 ms
58,448 KB
testcase_25 AC 1,376 ms
58,400 KB
testcase_26 AC 1,446 ms
58,528 KB
testcase_27 AC 1,452 ms
58,364 KB
testcase_28 AC 1,416 ms
58,692 KB
testcase_29 AC 1,356 ms
58,404 KB
testcase_30 AC 1,472 ms
58,572 KB
testcase_31 AC 1,501 ms
58,484 KB
testcase_32 AC 1,375 ms
58,356 KB
testcase_33 AC 144 ms
41,524 KB
testcase_34 AC 136 ms
41,028 KB
testcase_35 AC 147 ms
41,424 KB
testcase_36 AC 143 ms
41,404 KB
testcase_37 AC 138 ms
41,684 KB
testcase_38 AC 192 ms
41,972 KB
testcase_39 AC 209 ms
43,340 KB
testcase_40 AC 178 ms
42,044 KB
testcase_41 AC 197 ms
42,272 KB
testcase_42 AC 170 ms
42,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int N = sc.nextInt(), A = sc.nextInt(), B = sc.nextInt(), X = sc.nextInt(), Y = sc.nextInt();
			int[] H = new int[N];
			for (int i = 0;i < N;++ i) H[i] = sc.nextInt();
			int ng = -1, ok = 1_000_000_000;
			while(ok - ng > 1) {
				int mid = ok + ng >> 1;
				int[] h = H.clone();
				int count = A;
				for (int i = 0;i < N;++ i) {
					h[i] = Math.max(0, h[i] - mid);
					int a = Math.min(count, h[i] / X);
					h[i] -= a * X;
					count -= a;
				}
				Arrays.sort(h);
				for (int i = 0;i < Math.min(N, count);++ i) h[N - i - 1] = 0;
				long sum = 0;
				for (int i : h) sum += i;
				if ((long)B * Y >= sum) ok = mid;
				else ng = mid;
			}
			System.out.println(ok);
		}
	}
}
0