結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,060 KB
testcase_01 AC 37 ms
54,684 KB
testcase_02 AC 34 ms
55,400 KB
testcase_03 AC 35 ms
54,520 KB
testcase_04 AC 37 ms
56,300 KB
testcase_05 AC 35 ms
53,744 KB
testcase_06 AC 43 ms
64,276 KB
testcase_07 AC 37 ms
56,104 KB
testcase_08 AC 42 ms
62,172 KB
testcase_09 AC 41 ms
55,956 KB
testcase_10 AC 42 ms
55,708 KB
testcase_11 AC 41 ms
55,364 KB
testcase_12 AC 39 ms
55,536 KB
testcase_13 AC 36 ms
55,924 KB
testcase_14 AC 38 ms
57,712 KB
testcase_15 AC 38 ms
55,864 KB
testcase_16 AC 38 ms
56,484 KB
testcase_17 AC 39 ms
56,200 KB
testcase_18 AC 41 ms
56,268 KB
testcase_19 AC 38 ms
54,700 KB
testcase_20 AC 39 ms
57,608 KB
testcase_21 AC 37 ms
55,668 KB
testcase_22 AC 36 ms
55,388 KB
testcase_23 AC 38 ms
56,396 KB
testcase_24 AC 133 ms
90,696 KB
testcase_25 AC 128 ms
91,168 KB
testcase_26 AC 145 ms
92,628 KB
testcase_27 AC 166 ms
98,716 KB
testcase_28 AC 162 ms
103,560 KB
testcase_29 AC 82 ms
84,448 KB
testcase_30 AC 189 ms
118,400 KB
testcase_31 AC 154 ms
99,120 KB
testcase_32 AC 210 ms
118,652 KB
testcase_33 AC 223 ms
118,952 KB
testcase_34 AC 99 ms
78,336 KB
testcase_35 AC 162 ms
95,396 KB
testcase_36 AC 178 ms
106,824 KB
testcase_37 AC 223 ms
141,916 KB
testcase_38 AC 169 ms
109,932 KB
testcase_39 AC 104 ms
83,400 KB
testcase_40 AC 155 ms
99,108 KB
testcase_41 AC 155 ms
88,596 KB
testcase_42 AC 49 ms
67,044 KB
testcase_43 AC 109 ms
78,372 KB
testcase_44 AC 198 ms
142,756 KB
testcase_45 AC 154 ms
142,244 KB
testcase_46 AC 147 ms
91,720 KB
testcase_47 AC 101 ms
90,560 KB
testcase_48 AC 188 ms
103,960 KB
testcase_49 AC 228 ms
130,468 KB
testcase_50 AC 231 ms
131,096 KB
testcase_51 AC 230 ms
130,476 KB
testcase_52 AC 221 ms
130,320 KB
testcase_53 AC 234 ms
130,100 KB
testcase_54 AC 241 ms
143,204 KB
testcase_55 AC 224 ms
143,380 KB
testcase_56 AC 228 ms
143,308 KB
testcase_57 AC 234 ms
143,468 KB
testcase_58 AC 218 ms
143,452 KB
testcase_59 AC 263 ms
143,256 KB
testcase_60 AC 244 ms
143,252 KB
testcase_61 AC 255 ms
143,124 KB
testcase_62 AC 239 ms
143,316 KB
testcase_63 AC 259 ms
143,384 KB
testcase_64 AC 195 ms
143,224 KB
testcase_65 AC 245 ms
143,316 KB
testcase_66 AC 257 ms
143,436 KB
testcase_67 AC 205 ms
143,208 KB
testcase_68 AC 189 ms
143,464 KB
testcase_69 AC 213 ms
147,432 KB
testcase_70 AC 217 ms
147,564 KB
testcase_71 AC 207 ms
147,280 KB
testcase_72 AC 206 ms
146,812 KB
testcase_73 AC 204 ms
147,564 KB
testcase_74 AC 140 ms
99,076 KB
testcase_75 AC 207 ms
147,556 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 can_append(self, a, b) -> bool:
        s = self.s + b * (len(self.q) + 1)
        return s <= H

    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
    return res.can_append(a, b)


# 伸ばす(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