結果
問題 | No.2566 美しい整数列 |
ユーザー | oginoshikibu |
提出日時 | 2023-12-02 16:31:57 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,033 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 82,024 KB |
実行使用メモリ | 614,784 KB |
最終ジャッジ日時 | 2024-09-26 20:24:22 |
合計ジャッジ時間 | 4,919 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
59,264 KB |
testcase_01 | AC | 39 ms
54,016 KB |
testcase_02 | AC | 41 ms
54,144 KB |
testcase_03 | AC | 41 ms
54,016 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
from collections import defaultdict, deque from itertools import accumulate n,m=map(int, input().split()) A=list(map(int, input().split())) B=tuple(map(int, input().split())) C=tuple(map(int, input().split())) CA=list(accumulate(C)) if n==2: print(min(C[0] if A[1]-A[0]!=B[0] else 0,C[1] if A[1]-A[0]!=B[0] else 0)) exit() INF=float("inf") S=[defaultdict(lambda: INF) for _ in range(n+1)] if A[1]-A[0]==B[0]: S[2][A[1]]=min(S[2][A[1]],0) else: S[2][A[1]]=min(S[2][A[1]],C[0]) S[2][A[0]+B[0]]=min(S[2][A[0]+B[0]],C[1]) ans=INF for idx in range(2,n): cmin=INF for prev,cost in S[idx].items(): cmin=min(cmin,cost) if idx==n-1: ans=min(ans,cost+C[-1] if prev+B[(idx-1)%m]!=A[idx] else cost) continue if prev+B[(idx-1)%m]==A[idx]: S[idx+1][A[idx]]=min(S[idx+1][A[idx]],cost) else: S[idx+1][prev+B[(idx-1)%m]]=min(S[idx+1][prev+B[(idx-1)%m]],cost+C[idx]) S[idx+1][A[idx]]=min(S[idx+1][A[idx]],cmin+CA[idx-1]) print(ans)