結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー qibqib
提出日時 2023-03-07 23:57:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,045 ms / 3,000 ms
コード長 466 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 136,380 KB
最終ジャッジ日時 2024-09-18 02:18:10
合計ジャッジ時間 34,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,092 KB
testcase_01 AC 40 ms
53,004 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 44 ms
53,248 KB
testcase_04 AC 1,377 ms
114,344 KB
testcase_05 AC 1,871 ms
124,204 KB
testcase_06 AC 588 ms
119,192 KB
testcase_07 AC 39 ms
52,892 KB
testcase_08 AC 247 ms
100,944 KB
testcase_09 AC 298 ms
102,328 KB
testcase_10 AC 895 ms
86,612 KB
testcase_11 AC 563 ms
88,296 KB
testcase_12 AC 65 ms
72,928 KB
testcase_13 AC 968 ms
111,436 KB
testcase_14 AC 1,176 ms
107,152 KB
testcase_15 AC 950 ms
117,172 KB
testcase_16 AC 1,112 ms
85,980 KB
testcase_17 AC 584 ms
95,936 KB
testcase_18 AC 1,149 ms
89,192 KB
testcase_19 AC 217 ms
82,136 KB
testcase_20 AC 217 ms
82,632 KB
testcase_21 AC 480 ms
94,260 KB
testcase_22 AC 940 ms
111,964 KB
testcase_23 AC 1,582 ms
132,512 KB
testcase_24 AC 1,791 ms
125,376 KB
testcase_25 AC 1,863 ms
112,928 KB
testcase_26 AC 1,516 ms
134,988 KB
testcase_27 AC 2,045 ms
118,356 KB
testcase_28 AC 1,616 ms
136,380 KB
testcase_29 AC 1,947 ms
117,700 KB
testcase_30 AC 1,647 ms
129,116 KB
testcase_31 AC 1,673 ms
135,356 KB
testcase_32 AC 1,988 ms
122,564 KB
testcase_33 AC 76 ms
74,376 KB
testcase_34 AC 40 ms
53,616 KB
testcase_35 AC 83 ms
76,424 KB
testcase_36 AC 91 ms
76,184 KB
testcase_37 AC 51 ms
61,972 KB
testcase_38 AC 84 ms
76,732 KB
testcase_39 AC 66 ms
74,040 KB
testcase_40 AC 61 ms
67,004 KB
testcase_41 AC 84 ms
76,404 KB
testcase_42 AC 73 ms
72,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n, a, b, x, y = map(int, input().split())
h = list(map(int, input().split()))

ok = 10 ** 9
ng = -1
while abs(ok - ng) > 1:
  mid = (ok + ng) // 2
  hp = []
  for i in range(n):
    if h[i] > mid:
      heapq.heappush(hp, - (h[i] - mid))

  rest = a
  while rest > 0 and len(hp) > 0:
    cur = heapq.heappop(hp)
    rest -= 1
    if - cur - x > 0:
      heapq.heappush(hp, cur + x)

  if - sum(hp) <= b * y:
    ok = mid
  else:
    ng = mid

print(ok)
0