結果

問題 No.2759 Take Pictures, Elements?
ユーザー tkykwtnbtkykwtnb
提出日時 2024-05-17 22:09:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 85,020 KB
最終ジャッジ日時 2024-05-17 22:09:52
合計ジャッジ時間 2,960 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 37 ms
53,780 KB
testcase_03 AC 38 ms
54,424 KB
testcase_04 AC 36 ms
55,312 KB
testcase_05 AC 36 ms
55,228 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 67 ms
74,132 KB
testcase_10 AC 60 ms
73,868 KB
testcase_11 AC 67 ms
74,076 KB
testcase_12 AC 59 ms
73,788 KB
testcase_13 AC 57 ms
73,856 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 38 ms
53,780 KB
testcase_22 AC 37 ms
54,244 KB
testcase_23 AC 36 ms
55,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
from collections import defaultdict
D=defaultdict(list)
for i,a in enumerate(A):
    D[a].append(i)
dp=[[1<<60 for _ in range(N)] for _ in range(Q+1)]
dp[0][0]=0
for i,b in enumerate(B,1):
    for j in range(N):
        if dp[i-1][j]<1<<60:
            for v in D[b]:
                dp[i][v]=dp[i-1][j]+abs(v-j)
ans=1<<60
for j in range(N):
    ans=min(ans,dp[Q][j])
print(ans)
0