結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー noriocnorioc
提出日時 2024-03-23 00:35:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,612 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 147,612 KB
最終ジャッジ日時 2024-09-30 12:51:35
合計ジャッジ時間 13,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,760 KB
testcase_01 AC 37 ms
54,144 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 37 ms
54,144 KB
testcase_04 AC 37 ms
54,144 KB
testcase_05 AC 37 ms
53,888 KB
testcase_06 AC 45 ms
62,208 KB
testcase_07 AC 40 ms
54,528 KB
testcase_08 AC 42 ms
61,184 KB
testcase_09 AC 39 ms
55,296 KB
testcase_10 AC 41 ms
54,912 KB
testcase_11 AC 39 ms
54,912 KB
testcase_12 AC 39 ms
54,400 KB
testcase_13 AC 36 ms
54,144 KB
testcase_14 AC 41 ms
55,680 KB
testcase_15 AC 39 ms
55,296 KB
testcase_16 AC 40 ms
55,424 KB
testcase_17 AC 40 ms
55,680 KB
testcase_18 AC 41 ms
55,936 KB
testcase_19 AC 37 ms
54,016 KB
testcase_20 AC 38 ms
55,552 KB
testcase_21 AC 37 ms
54,144 KB
testcase_22 AC 38 ms
54,912 KB
testcase_23 AC 40 ms
55,424 KB
testcase_24 AC 127 ms
90,752 KB
testcase_25 AC 135 ms
91,136 KB
testcase_26 AC 147 ms
92,288 KB
testcase_27 AC 157 ms
98,812 KB
testcase_28 AC 154 ms
103,460 KB
testcase_29 AC 78 ms
84,224 KB
testcase_30 AC 183 ms
118,144 KB
testcase_31 AC 166 ms
99,064 KB
testcase_32 AC 201 ms
118,404 KB
testcase_33 AC 214 ms
118,896 KB
testcase_34 AC 95 ms
77,696 KB
testcase_35 AC 150 ms
95,204 KB
testcase_36 AC 186 ms
106,972 KB
testcase_37 AC 279 ms
141,964 KB
testcase_38 AC 163 ms
109,236 KB
testcase_39 AC 91 ms
82,816 KB
testcase_40 AC 153 ms
99,148 KB
testcase_41 AC 132 ms
88,456 KB
testcase_42 AC 49 ms
65,408 KB
testcase_43 AC 111 ms
78,208 KB
testcase_44 AC 219 ms
143,040 KB
testcase_45 AC 154 ms
142,008 KB
testcase_46 AC 143 ms
91,648 KB
testcase_47 AC 99 ms
89,984 KB
testcase_48 AC 182 ms
103,672 KB
testcase_49 AC 236 ms
130,292 KB
testcase_50 AC 220 ms
130,156 KB
testcase_51 AC 210 ms
129,900 KB
testcase_52 AC 215 ms
129,780 KB
testcase_53 AC 220 ms
130,072 KB
testcase_54 AC 246 ms
143,008 KB
testcase_55 AC 220 ms
143,000 KB
testcase_56 AC 260 ms
143,372 KB
testcase_57 AC 229 ms
143,368 KB
testcase_58 AC 199 ms
143,116 KB
testcase_59 AC 248 ms
143,252 KB
testcase_60 AC 227 ms
143,260 KB
testcase_61 AC 239 ms
143,192 KB
testcase_62 AC 251 ms
143,004 KB
testcase_63 AC 250 ms
143,312 KB
testcase_64 AC 189 ms
142,872 KB
testcase_65 AC 244 ms
143,252 KB
testcase_66 AC 245 ms
143,440 KB
testcase_67 AC 222 ms
143,248 KB
testcase_68 AC 182 ms
142,988 KB
testcase_69 AC 196 ms
147,092 KB
testcase_70 AC 200 ms
147,340 KB
testcase_71 AC 205 ms
147,288 KB
testcase_72 AC 203 ms
146,712 KB
testcase_73 AC 196 ms
147,464 KB
testcase_74 AC 135 ms
99,304 KB
testcase_75 AC 202 ms
147,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, H = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))


class D:
    def __init__(self):
        self.q = deque()
        self.a = 0
        self.b = 0
        self.s = 0

    def append(self, a, b):
        self.s += b * (len(self.q) + 1)
        self.q.append((a, b))
        self.a += a
        self.b += b

    def popleft(self):
        self.s -= self.b
        a, b = self.q.popleft()
        self.a -= a
        self.b -= b

    def score(self):
        assert self.s <= H
        return self.a


# a : 入力リスト
# pred : 条件
# op : 右端を伸ばす演算
# invop : 左端を縮める演算
def shakutori(a: list, pred, op, invop, identity):
    n = len(a)
    res = identity()
    hi = -1
    for lo in range(n):
        if lo > hi:
            hi = lo - 1
            res = identity()

        # 必要な分だけ伸ばす
        while hi+1 < n and pred(res, a[hi+1]):
            res = op(res, a[hi+1])
            hi += 1

        if lo <= hi:
            yield res, lo, hi

        # lo を一つ進める
        if lo <= hi:
            res = invop(res, a[lo])


# res に x を追加できるか
def pred(res: D, x):
    a, b = x
    s = res.s + b * (len(res.q) + 1)
    return s <= H


# 伸ばす(res に x を追加)
def op(res: D, x):
    a, b = x
    res.append(a, b)
    return res


# 縮める(res から x を削除)
def invop(res: D, x):
    res.popleft()
    return res


ans = 0
for res, lo, hi in shakutori(list(zip(A, B)), pred, op, invop, D):
    ans = max(ans, res.score())

print(ans)
0