結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー moharan627moharan627
提出日時 2021-11-12 22:35:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,755 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 147,716 KB
最終ジャッジ日時 2024-05-04 10:02:39
合計ジャッジ時間 60,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 51 ms
54,144 KB
testcase_02 AC 59 ms
54,528 KB
testcase_03 AC 61 ms
61,440 KB
testcase_04 AC 2,725 ms
141,968 KB
testcase_05 TLE -
testcase_06 AC 1,431 ms
119,292 KB
testcase_07 AC 60 ms
61,056 KB
testcase_08 AC 882 ms
104,572 KB
testcase_09 AC 1,409 ms
134,104 KB
testcase_10 AC 1,478 ms
93,440 KB
testcase_11 AC 1,063 ms
88,524 KB
testcase_12 AC 205 ms
77,312 KB
testcase_13 AC 1,695 ms
108,048 KB
testcase_14 AC 2,067 ms
121,988 KB
testcase_15 AC 2,241 ms
141,140 KB
testcase_16 AC 1,419 ms
88,704 KB
testcase_17 AC 1,115 ms
100,904 KB
testcase_18 AC 1,924 ms
100,624 KB
testcase_19 AC 863 ms
101,496 KB
testcase_20 AC 438 ms
83,420 KB
testcase_21 AC 1,607 ms
132,116 KB
testcase_22 AC 2,065 ms
130,820 KB
testcase_23 AC 2,896 ms
141,048 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2,813 ms
140,012 KB
testcase_27 TLE -
testcase_28 AC 2,811 ms
137,620 KB
testcase_29 TLE -
testcase_30 AC 2,944 ms
141,836 KB
testcase_31 AC 2,864 ms
147,716 KB
testcase_32 TLE -
testcase_33 AC 106 ms
76,672 KB
testcase_34 AC 86 ms
75,904 KB
testcase_35 AC 118 ms
76,288 KB
testcase_36 AC 102 ms
76,288 KB
testcase_37 AC 95 ms
76,416 KB
testcase_38 AC 117 ms
76,416 KB
testcase_39 AC 112 ms
76,032 KB
testcase_40 AC 104 ms
76,032 KB
testcase_41 AC 119 ms
76,672 KB
testcase_42 AC 108 ms
76,416 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