結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー mymelochanmymelochan
提出日時 2024-03-22 21:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 170,128 KB
最終ジャッジ日時 2024-09-30 11:10:19
合計ジャッジ時間 12,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 42 ms
54,400 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 43 ms
54,528 KB
testcase_05 AC 42 ms
54,016 KB
testcase_06 AC 51 ms
63,488 KB
testcase_07 AC 46 ms
60,672 KB
testcase_08 AC 51 ms
62,464 KB
testcase_09 AC 52 ms
61,952 KB
testcase_10 AC 50 ms
61,696 KB
testcase_11 AC 49 ms
61,440 KB
testcase_12 AC 46 ms
60,416 KB
testcase_13 AC 43 ms
54,400 KB
testcase_14 AC 50 ms
61,696 KB
testcase_15 AC 50 ms
61,696 KB
testcase_16 AC 55 ms
62,720 KB
testcase_17 AC 52 ms
61,824 KB
testcase_18 AC 51 ms
62,592 KB
testcase_19 AC 42 ms
54,528 KB
testcase_20 AC 48 ms
61,568 KB
testcase_21 AC 43 ms
54,528 KB
testcase_22 AC 46 ms
60,928 KB
testcase_23 AC 50 ms
62,464 KB
testcase_24 AC 90 ms
89,856 KB
testcase_25 AC 87 ms
89,984 KB
testcase_26 AC 93 ms
92,544 KB
testcase_27 AC 112 ms
105,216 KB
testcase_28 AC 127 ms
109,056 KB
testcase_29 AC 77 ms
82,560 KB
testcase_30 AC 171 ms
133,580 KB
testcase_31 AC 126 ms
104,832 KB
testcase_32 AC 178 ms
150,792 KB
testcase_33 AC 173 ms
134,356 KB
testcase_34 AC 66 ms
69,504 KB
testcase_35 AC 127 ms
101,376 KB
testcase_36 AC 124 ms
111,232 KB
testcase_37 AC 183 ms
159,980 KB
testcase_38 AC 129 ms
118,272 KB
testcase_39 AC 75 ms
82,944 KB
testcase_40 AC 121 ms
104,832 KB
testcase_41 AC 86 ms
86,016 KB
testcase_42 AC 59 ms
65,536 KB
testcase_43 AC 65 ms
73,600 KB
testcase_44 AC 183 ms
160,176 KB
testcase_45 AC 182 ms
160,560 KB
testcase_46 AC 94 ms
91,904 KB
testcase_47 AC 99 ms
89,984 KB
testcase_48 AC 121 ms
109,440 KB
testcase_49 AC 187 ms
147,224 KB
testcase_50 AC 209 ms
147,224 KB
testcase_51 AC 190 ms
146,968 KB
testcase_52 AC 202 ms
147,224 KB
testcase_53 AC 191 ms
147,056 KB
testcase_54 AC 200 ms
145,808 KB
testcase_55 AC 200 ms
145,680 KB
testcase_56 AC 201 ms
145,132 KB
testcase_57 AC 199 ms
145,168 KB
testcase_58 AC 198 ms
145,168 KB
testcase_59 AC 200 ms
145,676 KB
testcase_60 AC 203 ms
145,816 KB
testcase_61 AC 202 ms
145,552 KB
testcase_62 AC 201 ms
145,300 KB
testcase_63 AC 200 ms
145,804 KB
testcase_64 AC 196 ms
145,680 KB
testcase_65 AC 197 ms
145,424 KB
testcase_66 AC 201 ms
145,300 KB
testcase_67 AC 201 ms
145,172 KB
testcase_68 AC 203 ms
145,168 KB
testcase_69 AC 200 ms
169,740 KB
testcase_70 AC 203 ms
170,128 KB
testcase_71 AC 201 ms
169,876 KB
testcase_72 AC 197 ms
169,604 KB
testcase_73 AC 199 ms
169,992 KB
testcase_74 AC 119 ms
106,752 KB
testcase_75 AC 202 ms
169,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,H = lmin()
A = lmin()
B = lmin()

SA = [0]
for a in A:
    SA.append(SA[-1]+a)
SB = [0]
SSB = [0]
for i,b in enumerate(B):
    SB.append(SB[-1]+b*(i+1))
    SSB.append(SSB[-1]+b)

ans = 0
for i in range(N):
    ok = i
    ng = N+1
    while ng-ok > 1:
        cen = (ok+ng)//2
        if SB[cen]-SB[i]-(SSB[cen]-SSB[i])*i <= H:
            ok = cen
        else:
            ng = cen
    ans = max(ans,SA[ok]-SA[i])
print(ans)
0