結果

問題 No.2759 Take Pictures, Elements?
ユーザー CecilCecil
提出日時 2024-05-17 23:14:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 768 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 95,120 KB
最終ジャッジ日時 2024-05-17 23:15:04
合計ジャッジ時間 7,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,515 ms
95,120 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd
import bisect

N,Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
idx = dd(list)
for i in range(N):
    idx[A[i]].append(i)
ans = 0
pre = 0

dp = [ [float("inf") for i in range(N)] for _ in range(Q+1) ]
dp[0][0] = 0

for i in range(Q):
    """
    r = bisect.bisect_left(idx[B[i]], pre)
    r = min(len(idx[B[i]])-1,r)
    l = max(0, r-1)
    if abs(idx[B[i]][r]-pre)<abs(idx[B[i]][l]-pre):
        ans += abs(idx[B[i]][r]-pre)
        pre = idx[B[i]][r]
    else:
        ans += abs(idx[B[i]][l]-pre)
        pre = idx[B[i]][l]
    """
    for j in idx[B[i]]:
        for k in range(N):
            dp[i+1][j] = min(dp[i+1][j], dp[i][k]+abs(k-j))

print(min(dp[-1]))





0