結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー timitimi
提出日時 2024-03-02 19:10:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 966 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 169,088 KB
最終ジャッジ日時 2024-09-29 16:25:54
合計ジャッジ時間 12,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,528 KB
testcase_01 AC 40 ms
54,016 KB
testcase_02 AC 38 ms
54,016 KB
testcase_03 AC 39 ms
53,888 KB
testcase_04 AC 39 ms
54,528 KB
testcase_05 AC 38 ms
54,272 KB
testcase_06 AC 48 ms
63,104 KB
testcase_07 AC 44 ms
61,184 KB
testcase_08 AC 44 ms
60,928 KB
testcase_09 AC 46 ms
62,592 KB
testcase_10 AC 47 ms
61,568 KB
testcase_11 AC 44 ms
61,184 KB
testcase_12 AC 44 ms
60,544 KB
testcase_13 AC 38 ms
54,912 KB
testcase_14 AC 44 ms
60,928 KB
testcase_15 AC 39 ms
55,040 KB
testcase_16 AC 41 ms
55,040 KB
testcase_17 AC 46 ms
60,672 KB
testcase_18 AC 47 ms
62,592 KB
testcase_19 AC 40 ms
54,272 KB
testcase_20 AC 44 ms
60,800 KB
testcase_21 AC 38 ms
54,400 KB
testcase_22 AC 38 ms
54,272 KB
testcase_23 AC 47 ms
63,232 KB
testcase_24 AC 97 ms
92,288 KB
testcase_25 AC 81 ms
89,728 KB
testcase_26 AC 101 ms
91,520 KB
testcase_27 AC 112 ms
104,420 KB
testcase_28 AC 114 ms
109,628 KB
testcase_29 AC 74 ms
85,248 KB
testcase_30 AC 149 ms
134,136 KB
testcase_31 AC 109 ms
104,672 KB
testcase_32 AC 161 ms
134,260 KB
testcase_33 AC 157 ms
134,516 KB
testcase_34 AC 60 ms
71,808 KB
testcase_35 AC 103 ms
100,556 KB
testcase_36 AC 122 ms
111,616 KB
testcase_37 AC 179 ms
160,836 KB
testcase_38 AC 125 ms
117,432 KB
testcase_39 AC 67 ms
83,328 KB
testcase_40 AC 106 ms
104,912 KB
testcase_41 AC 80 ms
86,272 KB
testcase_42 AC 51 ms
65,408 KB
testcase_43 AC 60 ms
74,496 KB
testcase_44 AC 168 ms
160,836 KB
testcase_45 AC 164 ms
160,668 KB
testcase_46 AC 96 ms
92,288 KB
testcase_47 AC 83 ms
92,416 KB
testcase_48 AC 119 ms
109,620 KB
testcase_49 AC 185 ms
146,580 KB
testcase_50 AC 218 ms
147,032 KB
testcase_51 AC 193 ms
146,760 KB
testcase_52 AC 222 ms
147,220 KB
testcase_53 AC 195 ms
146,820 KB
testcase_54 AC 199 ms
144,808 KB
testcase_55 AC 206 ms
144,392 KB
testcase_56 AC 191 ms
144,392 KB
testcase_57 AC 204 ms
144,556 KB
testcase_58 AC 179 ms
144,560 KB
testcase_59 AC 205 ms
144,508 KB
testcase_60 AC 198 ms
144,776 KB
testcase_61 AC 200 ms
144,556 KB
testcase_62 AC 198 ms
144,396 KB
testcase_63 AC 191 ms
144,396 KB
testcase_64 AC 172 ms
144,368 KB
testcase_65 AC 195 ms
144,592 KB
testcase_66 AC 189 ms
144,648 KB
testcase_67 AC 174 ms
144,392 KB
testcase_68 AC 172 ms
144,596 KB
testcase_69 AC 202 ms
168,316 KB
testcase_70 AC 205 ms
168,356 KB
testcase_71 AC 202 ms
169,088 KB
testcase_72 AC 201 ms
168,948 KB
testcase_73 AC 204 ms
169,076 KB
testcase_74 AC 124 ms
106,624 KB
testcase_75 AC 206 ms
168,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque  
mod=998244353
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline
import math
N,H=map(int, stdin.readline().split())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
B.append(10**10)
AA=[0]
for a in A:
  AA.append(AA[-1]+a)
BB=[0];C=[0]
for i in range(N+1):
  BB.append(BB[-1]+(i+1)*B[i])
  C.append(C[-1]+B[i])
# print(AA)
# print(BB)
# print(C)

if min(B)>H:
  print(0)
  exit()
  
ans=0
for i in range(N):
  l,r=i,N+1
  if B[i]>H:
    continue
  while abs(l-r)>1:
    mid=(l+r)//2
    c=BB[mid]-BB[i]
    cc=C[mid]-C[i] 
    d=c-cc*i
    if d<=H:
      l=mid 
    else:
      r=mid 
  e=AA[l]-AA[i]
  ans=max(ans,e)
print(ans)
0