結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー lloyzlloyz
提出日時 2021-11-12 22:47:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,473 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 157,232 KB
最終ジャッジ日時 2024-11-25 20:34:27
合計ジャッジ時間 33,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 WA -
testcase_04 AC 2,617 ms
157,232 KB
testcase_05 AC 224 ms
106,636 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 107 ms
93,056 KB
testcase_09 AC 157 ms
96,812 KB
testcase_10 AC 775 ms
92,940 KB
testcase_11 WA -
testcase_12 AC 60 ms
65,664 KB
testcase_13 WA -
testcase_14 AC 183 ms
97,200 KB
testcase_15 AC 2,638 ms
149,460 KB
testcase_16 AC 702 ms
88,148 KB
testcase_17 AC 1,266 ms
98,676 KB
testcase_18 AC 110 ms
91,648 KB
testcase_19 AC 677 ms
96,060 KB
testcase_20 WA -
testcase_21 AC 1,704 ms
126,432 KB
testcase_22 AC 2,346 ms
139,688 KB
testcase_23 AC 2,762 ms
153,816 KB
testcase_24 AC 418 ms
112,992 KB
testcase_25 AC 167 ms
100,600 KB
testcase_26 WA -
testcase_27 AC 173 ms
100,584 KB
testcase_28 WA -
testcase_29 AC 230 ms
106,464 KB
testcase_30 AC 2,647 ms
149,696 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 46 ms
60,544 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 55 ms
65,024 KB
testcase_39 AC 64 ms
68,096 KB
testcase_40 AC 47 ms
62,784 KB
testcase_41 AC 58 ms
66,432 KB
testcase_42 AC 53 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

left = 0
right = 10**9 + 1
while right - left > 1:
    mid = (left + right) // 2
    ca, cb = a, b
    Hc = H[:]
    for i in range(n):
        if Hc[i] < mid:
            Hc[i] = 0
        else:
            Hc[i] -= mid
    for i in range(n):
        q, r = divmod(Hc[i], x)
        if ca >= q:
            Hc[i] = r
            ca -= q
        else:
            Hc[i] -= ca * x
            ca = 0
        if ca == 0:
            break

    if ca > 0:
        Hcc = [(Hc[i], i) for i in range(n)]
        Hcc.sort(key=lambda x: x[0], reverse=True)
        for i in range(n):
            ind = Hcc[i][1]
            if Hc[ind] > 0:
                ca -= 1
                Hc[ind] = 0
            if ca == 0:
                break

    if cb > 0:
        cy = y
        for i in range(n):
            if Hc[i] > cy:
                Hc[i] -= cy
                cb -= 1
                if cb == 0:
                    break
                q, r = divmod(Hc[i], y)
                cb -= q
                if cb <= 0:
                    break
                Hc[i] = 0
                cy = y - r
            else:
                cy -= Hc[i]
                Hc[i] = 0
                if cy == 0:
                    cb -= 1
                    cy = y
                    if cb == 0:
                        break

    if sum(Hc) == 0:
        right = mid
    else:
        left = mid
print(right)

0