結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー googol_S0googol_S0
提出日時 2021-11-12 21:46:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,530 ms / 3,000 ms
コード長 567 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 145,464 KB
最終ジャッジ日時 2024-05-04 08:07:32
合計ジャッジ時間 35,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,080 KB
testcase_01 AC 33 ms
53,380 KB
testcase_02 AC 35 ms
53,788 KB
testcase_03 AC 35 ms
52,988 KB
testcase_04 AC 1,885 ms
137,684 KB
testcase_05 AC 2,530 ms
139,596 KB
testcase_06 AC 73 ms
85,828 KB
testcase_07 AC 35 ms
53,196 KB
testcase_08 AC 468 ms
93,408 KB
testcase_09 AC 588 ms
104,740 KB
testcase_10 AC 778 ms
86,036 KB
testcase_11 AC 57 ms
70,248 KB
testcase_12 AC 130 ms
77,404 KB
testcase_13 AC 1,087 ms
107,972 KB
testcase_14 AC 1,552 ms
123,188 KB
testcase_15 AC 1,788 ms
145,464 KB
testcase_16 AC 1,129 ms
87,192 KB
testcase_17 AC 811 ms
102,876 KB
testcase_18 AC 1,567 ms
101,708 KB
testcase_19 AC 428 ms
97,200 KB
testcase_20 AC 51 ms
69,392 KB
testcase_21 AC 1,240 ms
132,068 KB
testcase_22 AC 1,438 ms
130,440 KB
testcase_23 AC 1,708 ms
135,744 KB
testcase_24 AC 2,362 ms
142,024 KB
testcase_25 AC 2,326 ms
140,168 KB
testcase_26 AC 1,609 ms
129,964 KB
testcase_27 AC 2,366 ms
139,940 KB
testcase_28 AC 78 ms
87,632 KB
testcase_29 AC 2,422 ms
140,608 KB
testcase_30 AC 2,013 ms
139,008 KB
testcase_31 AC 78 ms
86,640 KB
testcase_32 AC 77 ms
86,956 KB
testcase_33 AC 81 ms
76,512 KB
testcase_34 AC 35 ms
53,016 KB
testcase_35 AC 36 ms
59,108 KB
testcase_36 AC 39 ms
60,708 KB
testcase_37 AC 34 ms
53,548 KB
testcase_38 AC 91 ms
76,140 KB
testcase_39 AC 84 ms
76,288 KB
testcase_40 AC 76 ms
75,936 KB
testcase_41 AC 92 ms
76,828 KB
testcase_42 AC 80 ms
75,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B,X,Y=map(int,input().split())
H=list(map(int,input().split()))
L,R=0,10**9
from heapq import *
def f(m):
  a=0
  b=0
  for i in range(N):
    a+=max(H[i]-m,0)
    b+=(max(H[i]-m,0)+X-1)//X
  if b<=A or a<=B*Y:
    return 1
  Q=[]
  heapify(Q)
  for i in range(N):
    heappush(Q,-max(0,H[i]-m))
  for i in range(A):
    x=heappop(Q)
    if x==0:
      return 1
    x=-x
    heappush(Q,-max(0,x-X))
  s=0
  while len(Q):
    s-=heappop(Q)
  if s<=B*Y:
    return 1
  else:
    return 0

while L<R:
  M=(L+R)>>1
  if f(M):
    R=M
  else:
    L=max(L+1,M)
print(L)
0