結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 53 ms
62,336 KB
testcase_07 AC 43 ms
54,272 KB
testcase_08 AC 48 ms
61,184 KB
testcase_09 AC 46 ms
55,296 KB
testcase_10 AC 46 ms
54,784 KB
testcase_11 AC 45 ms
55,168 KB
testcase_12 AC 43 ms
54,272 KB
testcase_13 AC 43 ms
54,144 KB
testcase_14 AC 46 ms
55,296 KB
testcase_15 AC 46 ms
55,296 KB
testcase_16 AC 46 ms
55,296 KB
testcase_17 AC 45 ms
55,680 KB
testcase_18 AC 47 ms
55,936 KB
testcase_19 AC 44 ms
54,272 KB
testcase_20 AC 46 ms
55,296 KB
testcase_21 AC 44 ms
54,144 KB
testcase_22 AC 44 ms
54,400 KB
testcase_23 AC 46 ms
55,424 KB
testcase_24 AC 144 ms
90,880 KB
testcase_25 AC 151 ms
91,136 KB
testcase_26 AC 166 ms
92,160 KB
testcase_27 AC 180 ms
98,556 KB
testcase_28 AC 184 ms
103,600 KB
testcase_29 AC 91 ms
84,480 KB
testcase_30 AC 225 ms
118,396 KB
testcase_31 AC 186 ms
99,316 KB
testcase_32 AC 231 ms
118,280 KB
testcase_33 AC 241 ms
118,756 KB
testcase_34 AC 109 ms
78,080 KB
testcase_35 AC 161 ms
95,176 KB
testcase_36 AC 200 ms
106,852 KB
testcase_37 AC 274 ms
142,092 KB
testcase_38 AC 179 ms
109,104 KB
testcase_39 AC 103 ms
82,944 KB
testcase_40 AC 169 ms
98,892 KB
testcase_41 AC 161 ms
88,064 KB
testcase_42 AC 55 ms
65,536 KB
testcase_43 AC 124 ms
78,208 KB
testcase_44 AC 223 ms
142,404 KB
testcase_45 AC 168 ms
142,284 KB
testcase_46 AC 158 ms
91,648 KB
testcase_47 AC 112 ms
90,112 KB
testcase_48 AC 202 ms
103,644 KB
testcase_49 AC 251 ms
130,156 KB
testcase_50 AC 253 ms
130,028 KB
testcase_51 AC 242 ms
130,152 KB
testcase_52 AC 246 ms
129,892 KB
testcase_53 AC 251 ms
129,936 KB
testcase_54 AC 261 ms
143,388 KB
testcase_55 AC 293 ms
143,256 KB
testcase_56 AC 283 ms
143,120 KB
testcase_57 AC 258 ms
142,992 KB
testcase_58 AC 225 ms
143,208 KB
testcase_59 AC 288 ms
143,248 KB
testcase_60 AC 258 ms
143,208 KB
testcase_61 AC 273 ms
143,312 KB
testcase_62 AC 267 ms
143,252 KB
testcase_63 AC 296 ms
143,000 KB
testcase_64 AC 232 ms
142,992 KB
testcase_65 AC 291 ms
143,252 KB
testcase_66 AC 287 ms
143,252 KB
testcase_67 AC 272 ms
143,216 KB
testcase_68 AC 213 ms
143,208 KB
testcase_69 AC 229 ms
147,604 KB
testcase_70 AC 229 ms
147,096 KB
testcase_71 AC 229 ms
147,348 KB
testcase_72 AC 234 ms
146,824 KB
testcase_73 AC 223 ms
147,208 KB
testcase_74 AC 168 ms
98,920 KB
testcase_75 AC 242 ms
147,304 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):
        if self.s > H: return 0
        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 を一つ進める
        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):
    if len(res.q) > 0:
        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