結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー kohei2019kohei2019
提出日時 2023-06-12 00:19:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,610 ms / 3,000 ms
コード長 673 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 102,120 KB
最終ジャッジ日時 2024-06-11 02:19:55
合計ジャッジ時間 30,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,120 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 46 ms
59,904 KB
testcase_04 AC 1,292 ms
101,880 KB
testcase_05 AC 1,544 ms
102,004 KB
testcase_06 AC 858 ms
100,612 KB
testcase_07 AC 47 ms
59,648 KB
testcase_08 AC 223 ms
90,616 KB
testcase_09 AC 312 ms
97,916 KB
testcase_10 AC 847 ms
86,912 KB
testcase_11 AC 640 ms
84,096 KB
testcase_12 AC 102 ms
76,312 KB
testcase_13 AC 822 ms
92,448 KB
testcase_14 AC 975 ms
95,272 KB
testcase_15 AC 828 ms
102,120 KB
testcase_16 AC 1,045 ms
83,584 KB
testcase_17 AC 533 ms
89,408 KB
testcase_18 AC 1,142 ms
88,904 KB
testcase_19 AC 299 ms
89,628 KB
testcase_20 AC 192 ms
81,072 KB
testcase_21 AC 534 ms
97,620 KB
testcase_22 AC 818 ms
99,524 KB
testcase_23 AC 1,404 ms
101,440 KB
testcase_24 AC 1,432 ms
101,432 KB
testcase_25 AC 1,597 ms
101,860 KB
testcase_26 AC 1,307 ms
101,236 KB
testcase_27 AC 1,610 ms
101,616 KB
testcase_28 AC 1,341 ms
101,096 KB
testcase_29 AC 1,522 ms
102,112 KB
testcase_30 AC 1,368 ms
101,944 KB
testcase_31 AC 1,312 ms
100,932 KB
testcase_32 AC 1,498 ms
100,796 KB
testcase_33 AC 73 ms
71,680 KB
testcase_34 AC 66 ms
75,520 KB
testcase_35 AC 82 ms
76,160 KB
testcase_36 AC 78 ms
75,904 KB
testcase_37 AC 82 ms
75,776 KB
testcase_38 AC 91 ms
76,160 KB
testcase_39 AC 79 ms
75,392 KB
testcase_40 AC 70 ms
72,832 KB
testcase_41 AC 88 ms
76,672 KB
testcase_42 AC 75 ms
74,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,A,B,X,Y = map(int,input().split())
lsH0 = list(map(int,input().split()))

def is_ok(arg):
    lsH = [-(lsH0[i]-arg) for i in range(N)]
    heapq.heapify(lsH)
    for i in range(A):
        hp = heapq.heappop(lsH)
        v = hp + X
        heapq.heappush(lsH, v)

    vsum = 0
    for j in lsH:
        if j >= 0:
            continue
        else:
            vsum -= j

    if vsum > B*Y:
        return False
    else:
        return True
 
 
def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(meguru_bisect(-1,10**9+1))
0