結果
問題 | No.2566 美しい整数列 |
ユーザー | oginoshikibu |
提出日時 | 2023-12-02 16:33:47 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,008 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 192,116 KB |
最終ジャッジ日時 | 2024-09-26 20:25:40 |
合計ジャッジ時間 | 5,062 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
59,008 KB |
testcase_01 | AC | 53 ms
53,632 KB |
testcase_02 | AC | 53 ms
53,888 KB |
testcase_03 | AC | 53 ms
53,760 KB |
testcase_04 | TLE | - |
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) if A[1]-A[0]==B[0]: S[A[1]]=min(S[A[1]],0) else: S[A[1]]=min(S[A[1]],C[0]) S[A[0]+B[0]]=min(S[A[0]+B[0]],C[1]) ans=INF for idx in range(2,n): cmin=INF newS=defaultdict(lambda: INF) for prev,cost in S.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]: newS[A[idx]]=min(newS[A[idx]],cost) else: newS[prev+B[(idx-1)%m]]=min(newS[prev+B[(idx-1)%m]],cost+C[idx]) newS[A[idx]]=min(newS[A[idx]],cmin+CA[idx-1]) S=newS print(ans)