結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー googol_S0googol_S0
提出日時 2021-11-12 21:46:46
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 596 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 145,200 KB
最終ジャッジ日時 2024-11-25 17:55:13
合計ジャッジ時間 42,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,864 KB
testcase_01 AC 43 ms
52,992 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 2,268 ms
138,640 KB
testcase_05 TLE -
testcase_06 AC 86 ms
85,888 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 536 ms
92,984 KB
testcase_09 AC 702 ms
104,196 KB
testcase_10 AC 919 ms
86,096 KB
testcase_11 AC 64 ms
69,760 KB
testcase_12 AC 54 ms
64,384 KB
testcase_13 AC 1,341 ms
108,232 KB
testcase_14 AC 1,922 ms
122,044 KB
testcase_15 AC 2,167 ms
145,200 KB
testcase_16 AC 1,349 ms
87,680 KB
testcase_17 AC 965 ms
103,056 KB
testcase_18 AC 1,841 ms
100,936 KB
testcase_19 AC 534 ms
96,672 KB
testcase_20 AC 61 ms
68,224 KB
testcase_21 AC 1,528 ms
132,448 KB
testcase_22 AC 1,780 ms
130,424 KB
testcase_23 AC 2,120 ms
134,336 KB
testcase_24 AC 2,899 ms
141,936 KB
testcase_25 AC 2,975 ms
141,256 KB
testcase_26 AC 2,025 ms
129,956 KB
testcase_27 AC 2,939 ms
140,076 KB
testcase_28 AC 88 ms
86,272 KB
testcase_29 AC 2,878 ms
141,000 KB
testcase_30 AC 2,459 ms
139,508 KB
testcase_31 AC 88 ms
86,528 KB
testcase_32 AC 86 ms
86,528 KB
testcase_33 AC 94 ms
76,236 KB
testcase_34 AC 40 ms
52,736 KB
testcase_35 AC 44 ms
58,880 KB
testcase_36 AC 45 ms
58,496 KB
testcase_37 AC 41 ms
52,608 KB
testcase_38 AC 103 ms
76,140 KB
testcase_39 AC 98 ms
76,288 KB
testcase_40 AC 86 ms
75,892 KB
testcase_41 AC 106 ms
76,248 KB
testcase_42 AC 91 ms
76,544 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
  if b>A*X+B*Y:
    return 0
  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