結果

問題 No.2566 美しい整数列
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-12-02 14:47:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 172,536 KB
最終ジャッジ日時 2024-09-26 17:23:48
合計ジャッジ時間 6,154 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 228 ms
172,536 KB
testcase_05 AC 234 ms
166,640 KB
testcase_06 AC 183 ms
141,024 KB
testcase_07 AC 178 ms
137,832 KB
testcase_08 AC 179 ms
139,384 KB
testcase_09 AC 177 ms
138,300 KB
testcase_10 AC 174 ms
138,472 KB
testcase_11 AC 193 ms
141,144 KB
testcase_12 AC 193 ms
142,056 KB
testcase_13 AC 197 ms
140,996 KB
testcase_14 AC 192 ms
141,460 KB
testcase_15 AC 192 ms
141,624 KB
testcase_16 AC 214 ms
161,920 KB
testcase_17 AC 222 ms
164,464 KB
testcase_18 AC 219 ms
164,736 KB
testcase_19 AC 158 ms
123,756 KB
testcase_20 AC 208 ms
160,368 KB
testcase_21 AC 212 ms
163,504 KB
testcase_22 AC 157 ms
133,240 KB
testcase_23 AC 184 ms
137,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))
cum=[0]
for i in C:
    cum.append(cum[-1]+i)
before=defaultdict(lambda:-1)
before[A[0]]=0
ans=[0]*(N+1)
neg=0
for i in range(N-1):
    neg+=B[i%M]
    ans[i+1]=ans[before[A[i+1]-neg]]+cum[i+1]-cum[before[A[i+1]-neg]+1]
    before[A[i+1]-neg]=max(before[A[i+1]-neg],i+1)
fin=ans[-2]
for i in range(N):
    fin=min(fin,ans[i]+cum[-1]-cum[i+1])
print(fin)
0