結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー nikoro256nikoro256
提出日時 2024-03-22 22:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 139,968 KB
最終ジャッジ日時 2024-09-30 11:51:36
合計ジャッジ時間 13,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 44 ms
51,968 KB
testcase_06 AC 56 ms
62,080 KB
testcase_07 AC 49 ms
59,008 KB
testcase_08 AC 53 ms
60,672 KB
testcase_09 AC 54 ms
60,544 KB
testcase_10 AC 53 ms
60,288 KB
testcase_11 AC 51 ms
59,264 KB
testcase_12 AC 49 ms
58,624 KB
testcase_13 AC 43 ms
52,608 KB
testcase_14 AC 51 ms
60,160 KB
testcase_15 AC 50 ms
59,648 KB
testcase_16 AC 54 ms
61,312 KB
testcase_17 AC 51 ms
60,032 KB
testcase_18 AC 54 ms
61,312 KB
testcase_19 AC 43 ms
52,352 KB
testcase_20 AC 51 ms
60,160 KB
testcase_21 AC 42 ms
51,968 KB
testcase_22 AC 49 ms
59,008 KB
testcase_23 AC 54 ms
61,184 KB
testcase_24 AC 100 ms
91,392 KB
testcase_25 AC 91 ms
87,168 KB
testcase_26 AC 102 ms
94,080 KB
testcase_27 AC 119 ms
98,816 KB
testcase_28 AC 134 ms
97,664 KB
testcase_29 AC 78 ms
78,208 KB
testcase_30 AC 159 ms
107,868 KB
testcase_31 AC 117 ms
98,816 KB
testcase_32 AC 164 ms
108,400 KB
testcase_33 AC 161 ms
108,500 KB
testcase_34 AC 63 ms
66,048 KB
testcase_35 AC 133 ms
97,408 KB
testcase_36 AC 129 ms
98,816 KB
testcase_37 AC 173 ms
112,952 KB
testcase_38 AC 136 ms
98,100 KB
testcase_39 AC 77 ms
76,544 KB
testcase_40 AC 127 ms
98,944 KB
testcase_41 AC 86 ms
82,432 KB
testcase_42 AC 59 ms
63,744 KB
testcase_43 AC 66 ms
69,248 KB
testcase_44 AC 173 ms
112,552 KB
testcase_45 AC 169 ms
112,436 KB
testcase_46 AC 99 ms
91,008 KB
testcase_47 AC 107 ms
91,648 KB
testcase_48 AC 124 ms
98,176 KB
testcase_49 AC 189 ms
112,640 KB
testcase_50 AC 219 ms
112,384 KB
testcase_51 AC 193 ms
112,512 KB
testcase_52 AC 222 ms
112,640 KB
testcase_53 AC 189 ms
112,384 KB
testcase_54 AC 229 ms
139,328 KB
testcase_55 AC 225 ms
139,968 KB
testcase_56 AC 224 ms
139,716 KB
testcase_57 AC 224 ms
139,840 KB
testcase_58 AC 224 ms
139,584 KB
testcase_59 AC 226 ms
139,588 KB
testcase_60 AC 225 ms
139,928 KB
testcase_61 AC 219 ms
139,720 KB
testcase_62 AC 217 ms
139,840 KB
testcase_63 AC 227 ms
139,592 KB
testcase_64 AC 226 ms
139,848 KB
testcase_65 AC 224 ms
139,844 KB
testcase_66 AC 224 ms
139,720 KB
testcase_67 AC 230 ms
139,844 KB
testcase_68 AC 225 ms
139,840 KB
testcase_69 AC 203 ms
133,320 KB
testcase_70 AC 201 ms
132,936 KB
testcase_71 AC 202 ms
133,316 KB
testcase_72 AC 205 ms
133,316 KB
testcase_73 AC 205 ms
133,192 KB
testcase_74 AC 128 ms
102,784 KB
testcase_75 AC 208 ms
133,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isok(r):
    tmp=B[r]-B[l-1]-(B2[r]-B2[l-1])*l
    if tmp<=H:
        return True
    return False

N,H=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
for i in range(N-1):
    A[i+1]+=A[i]
A+=[0]
B2=B[::]
B=[B[i]*(i+1) for i in range(N)]
for i in range(N-1):
    B[i+1]+=B[i]
    B2[i+1]+=B2[i]
B2+=[0]
B+=[0]
ans=0
for l in range(N):
    left,right=l-1,N
    while right-left>1:
        mid=(right+left)//2
        if isok(mid):
            left=mid
        else:
            right=mid
    ans=max(A[left]-A[l-1],ans)
    #print(l,left,A[left]-A[l-1],B[left]-B[l-1]-(B2[left]-B2[l-1])*l)
print(ans)
0