結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー moharan627moharan627
提出日時 2021-11-12 22:35:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,691 ms / 3,000 ms
コード長 1,755 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 147,104 KB
最終ジャッジ日時 2024-11-25 20:07:42
合計ジャッジ時間 52,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 45 ms
54,656 KB
testcase_02 AC 47 ms
54,912 KB
testcase_03 AC 54 ms
61,312 KB
testcase_04 AC 2,289 ms
141,420 KB
testcase_05 AC 2,691 ms
142,408 KB
testcase_06 AC 1,180 ms
118,864 KB
testcase_07 AC 53 ms
61,696 KB
testcase_08 AC 785 ms
104,984 KB
testcase_09 AC 1,203 ms
133,912 KB
testcase_10 AC 1,303 ms
93,676 KB
testcase_11 AC 922 ms
88,576 KB
testcase_12 AC 175 ms
77,056 KB
testcase_13 AC 1,475 ms
108,540 KB
testcase_14 AC 1,744 ms
122,456 KB
testcase_15 AC 1,940 ms
141,052 KB
testcase_16 AC 1,254 ms
88,404 KB
testcase_17 AC 973 ms
101,420 KB
testcase_18 AC 1,670 ms
100,320 KB
testcase_19 AC 767 ms
101,404 KB
testcase_20 AC 391 ms
82,872 KB
testcase_21 AC 1,385 ms
131,852 KB
testcase_22 AC 1,740 ms
130,104 KB
testcase_23 AC 2,489 ms
141,072 KB
testcase_24 AC 2,554 ms
142,236 KB
testcase_25 AC 2,657 ms
142,744 KB
testcase_26 AC 2,355 ms
139,736 KB
testcase_27 AC 2,605 ms
141,328 KB
testcase_28 AC 2,353 ms
137,884 KB
testcase_29 AC 2,567 ms
140,060 KB
testcase_30 AC 2,509 ms
141,188 KB
testcase_31 AC 2,397 ms
147,104 KB
testcase_32 AC 2,672 ms
140,044 KB
testcase_33 AC 95 ms
76,416 KB
testcase_34 AC 74 ms
75,776 KB
testcase_35 AC 105 ms
76,160 KB
testcase_36 AC 90 ms
76,544 KB
testcase_37 AC 84 ms
76,032 KB
testcase_38 AC 107 ms
76,636 KB
testcase_39 AC 102 ms
76,288 KB
testcase_40 AC 90 ms
76,248 KB
testcase_41 AC 106 ms
76,824 KB
testcase_42 AC 102 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20,2**63に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N,A,B,X,Y = MI()
    H =LI()
    from heapq import heappop, heappush
    def is_ok(K):
        # 条件を満たすかどうか?問題ごとに定義
        Heap = []
        for h in H:
            heappush(Heap, -(h-K))
        for a in range(A):
            h = -heappop(Heap)
            h = h-X
            heappush(Heap,-h)
        SUM = 0
        for n in range(N):
            h = -heappop(Heap)
            if h<=0:
                continue
            else:
                SUM += h
        return SUM <= B*Y
    def meguru_bisect(ng, ok):
        """
        この条件は、問題に基づくやつじゃなくてもOK
        条件の付け方は、ngとokの広げ方をどのようにするかで決まってくる。
        (目的値)~正の無限 が条件を満たす場合
        ng…条件を満たさない値の範囲での最大値
        ok…条件を満たす値の範囲での最小値
        ng < ok
        is_ok == Trueの場合、探索範囲が左半分へ
        is_ok == Falseの場合、探索範囲が右半分へ
        """
        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))
    return
solve()
0