結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー navel_tosnavel_tos
提出日時 2024-03-22 23:13:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 135,220 KB
最終ジャッジ日時 2024-09-30 12:28:28
合計ジャッジ時間 10,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,620 KB
testcase_01 AC 37 ms
52,548 KB
testcase_02 AC 38 ms
52,932 KB
testcase_03 AC 38 ms
52,012 KB
testcase_04 AC 39 ms
53,124 KB
testcase_05 AC 38 ms
53,072 KB
testcase_06 AC 44 ms
60,812 KB
testcase_07 AC 39 ms
52,952 KB
testcase_08 AC 43 ms
59,744 KB
testcase_09 AC 39 ms
52,496 KB
testcase_10 AC 38 ms
52,612 KB
testcase_11 AC 39 ms
52,560 KB
testcase_12 AC 39 ms
52,440 KB
testcase_13 AC 38 ms
52,072 KB
testcase_14 AC 39 ms
53,788 KB
testcase_15 AC 40 ms
53,536 KB
testcase_16 AC 39 ms
53,464 KB
testcase_17 AC 39 ms
52,684 KB
testcase_18 AC 40 ms
54,052 KB
testcase_19 AC 38 ms
52,276 KB
testcase_20 AC 39 ms
52,804 KB
testcase_21 AC 38 ms
52,940 KB
testcase_22 AC 40 ms
54,180 KB
testcase_23 AC 39 ms
53,572 KB
testcase_24 AC 87 ms
90,520 KB
testcase_25 AC 83 ms
88,340 KB
testcase_26 AC 94 ms
93,296 KB
testcase_27 AC 107 ms
98,984 KB
testcase_28 AC 106 ms
97,920 KB
testcase_29 AC 68 ms
78,592 KB
testcase_30 AC 132 ms
105,708 KB
testcase_31 AC 113 ms
99,036 KB
testcase_32 AC 138 ms
105,848 KB
testcase_33 AC 133 ms
105,948 KB
testcase_34 AC 60 ms
67,840 KB
testcase_35 AC 98 ms
98,816 KB
testcase_36 AC 112 ms
98,688 KB
testcase_37 AC 149 ms
110,268 KB
testcase_38 AC 118 ms
97,664 KB
testcase_39 AC 74 ms
76,928 KB
testcase_40 AC 109 ms
99,224 KB
testcase_41 AC 85 ms
84,924 KB
testcase_42 AC 49 ms
62,848 KB
testcase_43 AC 65 ms
71,808 KB
testcase_44 AC 145 ms
109,548 KB
testcase_45 AC 138 ms
109,300 KB
testcase_46 AC 90 ms
90,752 KB
testcase_47 AC 91 ms
91,136 KB
testcase_48 AC 105 ms
98,176 KB
testcase_49 AC 145 ms
113,920 KB
testcase_50 AC 145 ms
113,768 KB
testcase_51 AC 145 ms
113,664 KB
testcase_52 AC 145 ms
113,756 KB
testcase_53 AC 143 ms
113,536 KB
testcase_54 AC 176 ms
134,880 KB
testcase_55 AC 172 ms
134,704 KB
testcase_56 AC 170 ms
134,808 KB
testcase_57 AC 164 ms
134,752 KB
testcase_58 AC 165 ms
134,940 KB
testcase_59 AC 167 ms
135,220 KB
testcase_60 AC 171 ms
134,708 KB
testcase_61 AC 159 ms
134,896 KB
testcase_62 AC 171 ms
134,700 KB
testcase_63 AC 166 ms
135,156 KB
testcase_64 AC 158 ms
134,420 KB
testcase_65 AC 174 ms
134,888 KB
testcase_66 AC 168 ms
134,704 KB
testcase_67 AC 164 ms
134,756 KB
testcase_68 AC 162 ms
135,016 KB
testcase_69 AC 148 ms
130,332 KB
testcase_70 AC 151 ms
129,840 KB
testcase_71 AC 145 ms
130,092 KB
testcase_72 AC 146 ms
129,840 KB
testcase_73 AC 146 ms
129,820 KB
testcase_74 AC 99 ms
104,320 KB
testcase_75 AC 146 ms
130,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder423D The Early Bird Catches The Worm

N, H = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ans = 0

#累積和を取っておく  なんかに使うと思う
C = [0] * (N + 1)
D = [0] * (N + 1)
for i in range(N):
    C[i + 1] = A[i] + C[i]
    D[i + 1] = B[i] + D[i]
Rt = sat = hel = 0
for Lt in range(N):
    #1. 区間Lt - 1を捨てる
    if Lt:
        sat -= A[Lt - 1]
        #[Lt - 1: Rt)の疲労度が1日分回復
        hel -= D[Rt] - D[Lt - 1]

    if Lt > Rt:
        sat = hel = 0
        Rt = Lt

    #2. 疲れが限界を迎えるまで伸ばす
    while True:
        if Rt == N:
            break
        #Rtを追加したときの疲労度変化をシミュレート
        nxt = hel + B[Rt] * (Rt + 1 - Lt)
        if nxt <= H:
            hel = nxt
            sat += A[Rt]
            Rt += 1
        else: break
    ans = max(ans, sat)
print(ans)
0