結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー FromBooskaFromBooska
提出日時 2024-03-23 16:05:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 162,468 KB
最終ジャッジ日時 2024-09-30 13:30:37
合計ジャッジ時間 10,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,684 KB
testcase_01 AC 34 ms
52,484 KB
testcase_02 AC 33 ms
52,932 KB
testcase_03 AC 34 ms
52,748 KB
testcase_04 AC 33 ms
52,868 KB
testcase_05 AC 34 ms
53,184 KB
testcase_06 AC 38 ms
59,796 KB
testcase_07 AC 34 ms
52,948 KB
testcase_08 AC 37 ms
58,676 KB
testcase_09 AC 34 ms
53,692 KB
testcase_10 AC 37 ms
53,540 KB
testcase_11 AC 38 ms
53,216 KB
testcase_12 AC 36 ms
53,488 KB
testcase_13 AC 36 ms
53,192 KB
testcase_14 AC 37 ms
53,568 KB
testcase_15 AC 35 ms
53,072 KB
testcase_16 AC 36 ms
54,352 KB
testcase_17 AC 34 ms
53,020 KB
testcase_18 AC 34 ms
53,560 KB
testcase_19 AC 34 ms
53,684 KB
testcase_20 AC 34 ms
53,940 KB
testcase_21 AC 32 ms
52,644 KB
testcase_22 AC 34 ms
53,212 KB
testcase_23 AC 35 ms
54,332 KB
testcase_24 AC 100 ms
96,584 KB
testcase_25 AC 80 ms
93,272 KB
testcase_26 AC 102 ms
96,656 KB
testcase_27 AC 128 ms
99,736 KB
testcase_28 AC 105 ms
102,208 KB
testcase_29 AC 63 ms
82,232 KB
testcase_30 AC 147 ms
125,484 KB
testcase_31 AC 108 ms
99,712 KB
testcase_32 AC 189 ms
125,864 KB
testcase_33 AC 168 ms
125,924 KB
testcase_34 AC 54 ms
69,824 KB
testcase_35 AC 92 ms
99,312 KB
testcase_36 AC 135 ms
108,736 KB
testcase_37 AC 171 ms
133,304 KB
testcase_38 AC 116 ms
111,712 KB
testcase_39 AC 57 ms
79,872 KB
testcase_40 AC 97 ms
99,968 KB
testcase_41 AC 74 ms
88,832 KB
testcase_42 AC 42 ms
62,848 KB
testcase_43 AC 55 ms
73,576 KB
testcase_44 AC 144 ms
132,220 KB
testcase_45 AC 131 ms
132,148 KB
testcase_46 AC 89 ms
96,256 KB
testcase_47 AC 74 ms
96,512 KB
testcase_48 AC 101 ms
102,396 KB
testcase_49 AC 146 ms
131,496 KB
testcase_50 AC 149 ms
131,368 KB
testcase_51 AC 146 ms
131,756 KB
testcase_52 AC 146 ms
131,320 KB
testcase_53 AC 143 ms
132,012 KB
testcase_54 AC 187 ms
161,900 KB
testcase_55 AC 197 ms
162,468 KB
testcase_56 AC 180 ms
162,232 KB
testcase_57 AC 229 ms
161,708 KB
testcase_58 AC 158 ms
161,864 KB
testcase_59 AC 207 ms
162,040 KB
testcase_60 AC 201 ms
162,032 KB
testcase_61 AC 160 ms
161,992 KB
testcase_62 AC 221 ms
161,908 KB
testcase_63 AC 199 ms
162,236 KB
testcase_64 AC 158 ms
161,988 KB
testcase_65 AC 166 ms
162,176 KB
testcase_66 AC 186 ms
162,168 KB
testcase_67 AC 163 ms
161,864 KB
testcase_68 AC 157 ms
162,244 KB
testcase_69 AC 146 ms
157,568 KB
testcase_70 AC 147 ms
157,244 KB
testcase_71 AC 149 ms
157,392 KB
testcase_72 AC 150 ms
157,316 KB
testcase_73 AC 148 ms
157,384 KB
testcase_74 AC 92 ms
104,924 KB
testcase_75 AC 149 ms
157,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 後ろから累積和してみたが高速計算できない
# しゃくとり法だった, ABC032C利用

N, H = map(int, input().split())
A = [0]+list(map(int, input().split()))
B = [0]+list(map(int, input().split()))

A_cumu = []
temp = 0
for a in A:
    temp += a
    A_cumu.append(temp)

B_cumu = []
temp = 0
for b in B:
    temp += b
    B_cumu.append(temp)

#print('A', A)
#print('A_cumu', A_cumu)
#print('B', B)
#print('B_cumu', B_cumu)

right = 1
left = 1
ans = 0
calc = 0
while left < N+1 and right < N+1:
    while right < N+1:
        #print('right', right, '(right+1-left)', (right+1-left))
        if calc+B[right]*(right+1-left) <= H:
            calc += B[right]*(right+1-left)
            ans = max(ans, A_cumu[right]-A_cumu[left-1])
            #print('(right+1-left)', (right+1-left), 'calc', calc, 'ans', ans)
            right += 1
        else:
            break
    #print('前', 'left', left, 'right', right, 'calc', calc, 'ans', ans)
    
    calc -= (B_cumu[right-1]-B_cumu[left-1])
    left += 1
    if left >= right:
        right = left 
        calc = 0

    #print('後', 'left', left, 'right', right, 'calc', calc, 'ans', ans)

print(ans)
0