結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー june19312june19312
提出日時 2024-03-22 22:51:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,025 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 149,600 KB
最終ジャッジ日時 2024-09-30 12:16:21
合計ジャッジ時間 12,837 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,684 KB
testcase_01 AC 40 ms
54,072 KB
testcase_02 AC 43 ms
54,828 KB
testcase_03 AC 41 ms
54,688 KB
testcase_04 AC 42 ms
54,616 KB
testcase_05 AC 41 ms
54,376 KB
testcase_06 AC 46 ms
61,248 KB
testcase_07 AC 42 ms
54,292 KB
testcase_08 AC 47 ms
61,916 KB
testcase_09 AC 44 ms
55,508 KB
testcase_10 AC 43 ms
56,112 KB
testcase_11 AC 43 ms
56,280 KB
testcase_12 AC 43 ms
55,368 KB
testcase_13 AC 41 ms
54,216 KB
testcase_14 AC 43 ms
55,796 KB
testcase_15 AC 42 ms
55,444 KB
testcase_16 AC 42 ms
55,064 KB
testcase_17 AC 43 ms
55,460 KB
testcase_18 AC 44 ms
55,724 KB
testcase_19 AC 43 ms
54,048 KB
testcase_20 AC 42 ms
55,060 KB
testcase_21 AC 41 ms
55,404 KB
testcase_22 AC 42 ms
54,652 KB
testcase_23 AC 44 ms
56,376 KB
testcase_24 AC 110 ms
93,312 KB
testcase_25 AC 101 ms
91,620 KB
testcase_26 AC 114 ms
92,472 KB
testcase_27 AC 140 ms
97,864 KB
testcase_28 AC 132 ms
102,788 KB
testcase_29 AC 75 ms
84,092 KB
testcase_30 AC 167 ms
119,172 KB
testcase_31 AC 123 ms
96,892 KB
testcase_32 AC 176 ms
120,004 KB
testcase_33 AC 183 ms
120,052 KB
testcase_34 AC 74 ms
76,960 KB
testcase_35 AC 115 ms
95,444 KB
testcase_36 AC 160 ms
107,564 KB
testcase_37 AC 202 ms
143,736 KB
testcase_38 AC 139 ms
107,932 KB
testcase_39 AC 74 ms
83,116 KB
testcase_40 AC 120 ms
96,852 KB
testcase_41 AC 101 ms
87,992 KB
testcase_42 AC 51 ms
65,268 KB
testcase_43 AC 77 ms
77,384 KB
testcase_44 AC 186 ms
143,760 KB
testcase_45 AC 163 ms
143,252 KB
testcase_46 AC 107 ms
93,344 KB
testcase_47 AC 90 ms
93,200 KB
testcase_48 AC 129 ms
102,160 KB
testcase_49 AC 226 ms
131,756 KB
testcase_50 AC 207 ms
131,132 KB
testcase_51 AC 221 ms
131,604 KB
testcase_52 AC 220 ms
131,620 KB
testcase_53 AC 205 ms
131,536 KB
testcase_54 AC 215 ms
149,340 KB
testcase_55 AC 207 ms
149,228 KB
testcase_56 AC 206 ms
149,224 KB
testcase_57 AC 216 ms
149,348 KB
testcase_58 AC 195 ms
149,352 KB
testcase_59 AC 211 ms
149,324 KB
testcase_60 AC 225 ms
149,216 KB
testcase_61 AC 208 ms
149,104 KB
testcase_62 AC 215 ms
149,340 KB
testcase_63 AC 211 ms
149,384 KB
testcase_64 AC 188 ms
149,600 KB
testcase_65 AC 213 ms
149,588 KB
testcase_66 AC 209 ms
149,348 KB
testcase_67 AC 199 ms
149,196 KB
testcase_68 AC 187 ms
148,968 KB
testcase_69 AC 196 ms
147,680 KB
testcase_70 AC 198 ms
147,936 KB
testcase_71 AC 197 ms
147,796 KB
testcase_72 AC 198 ms
147,664 KB
testcase_73 AC 205 ms
147,780 KB
testcase_74 AC 135 ms
99,896 KB
testcase_75 AC 205 ms
147,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,H = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

rui = []
for i,v in enumerate(B):
    if i == 0:
        rui.append(v)
    else:
        rui.append(rui[-1]+v)

#print("rui")
#print(rui)
#print("B")
#print(B)
#print("A")
#print(A)
#print()

Q1,Q2 = deque(list(range(N))),deque()

tired = 0
manzoku = 0
ans = 0

for i,v in enumerate(B):
    while Q1:
        if (len(Q2)+1)*B[Q1[0]] + tired <= H:
            tired += (len(Q2)+1)*B[Q1[0]]
            manzoku += A[Q1[0]]
            Q2.append(Q1.popleft())
        else:
            break

    ans = max(ans,manzoku)

#    print("before","Q2",Q2,"tired",tired,"manzoku",manzoku)

    if len(Q2):
        nex1 = Q2[0]
        nex2 = Q2[-1]
        tired -= rui[nex2]
        if nex1 != 0:
            tired += rui[nex1-1]
        manzoku -= A[nex1]
        Q2.popleft()
    else:
        Q1.popleft()

#    print("after","Q2",Q2,"tired",tired,"manzoku",manzoku)
#    print()
print(ans)
        
0