結果

問題 No.2759 Take Pictures, Elements?
ユーザー tkykwtnbtkykwtnb
提出日時 2024-05-17 22:12:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 84,848 KB
最終ジャッジ日時 2024-05-17 22:12:44
合計ジャッジ時間 3,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
84,560 KB
testcase_01 AC 761 ms
84,848 KB
testcase_02 AC 37 ms
54,020 KB
testcase_03 AC 38 ms
54,024 KB
testcase_04 AC 37 ms
55,480 KB
testcase_05 AC 35 ms
54,788 KB
testcase_06 AC 35 ms
55,768 KB
testcase_07 AC 37 ms
54,244 KB
testcase_08 AC 38 ms
54,804 KB
testcase_09 AC 59 ms
74,368 KB
testcase_10 AC 58 ms
74,008 KB
testcase_11 AC 58 ms
74,108 KB
testcase_12 AC 59 ms
74,072 KB
testcase_13 AC 59 ms
74,432 KB
testcase_14 AC 76 ms
84,788 KB
testcase_15 AC 86 ms
84,780 KB
testcase_16 AC 78 ms
84,352 KB
testcase_17 AC 76 ms
84,656 KB
testcase_18 AC 78 ms
84,608 KB
testcase_19 AC 77 ms
84,420 KB
testcase_20 AC 76 ms
84,616 KB
testcase_21 AC 37 ms
55,336 KB
testcase_22 AC 35 ms
55,064 KB
testcase_23 AC 36 ms
53,700 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 p in D[b]:
                dp[i][p]=min(dp[i][p],dp[i-1][j]+abs(p-j))
ans=1<<60
for j in range(N):
    ans=min(ans,dp[Q][j])
print(ans)
0