結果

問題 No.2759 Take Pictures, Elements?
ユーザー CecilCecil
提出日時 2024-05-17 23:18:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 876 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 90,768 KB
最終ジャッジ日時 2024-05-17 23:18:35
合計ジャッジ時間 4,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
83,760 KB
testcase_01 AC 876 ms
90,768 KB
testcase_02 AC 43 ms
54,920 KB
testcase_03 AC 45 ms
55,760 KB
testcase_04 AC 46 ms
54,856 KB
testcase_05 AC 45 ms
53,920 KB
testcase_06 AC 46 ms
54,688 KB
testcase_07 AC 46 ms
55,408 KB
testcase_08 AC 45 ms
54,560 KB
testcase_09 AC 108 ms
82,692 KB
testcase_10 AC 109 ms
83,056 KB
testcase_11 AC 126 ms
83,160 KB
testcase_12 AC 106 ms
82,964 KB
testcase_13 AC 104 ms
82,672 KB
testcase_14 AC 124 ms
83,448 KB
testcase_15 AC 124 ms
83,704 KB
testcase_16 AC 122 ms
83,572 KB
testcase_17 AC 124 ms
83,532 KB
testcase_18 AC 121 ms
83,500 KB
testcase_19 AC 121 ms
83,904 KB
testcase_20 AC 145 ms
83,668 KB
testcase_21 AC 44 ms
54,064 KB
testcase_22 AC 43 ms
55,156 KB
testcase_23 AC 43 ms
54,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd
import bisect

N,Q = map(int, input().split())
A = list(map(int, input().split()))
B = [0]+list(map(int, input().split()))
idx = dd(list)
idx[0].append(0)
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(1, Q+1):
    """
    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 idx[B[i-1]]:
            dp[i][j] = min(dp[i][j], dp[i-1][k]+abs(k-j))
#for i in range(Q+1):
#    print(dp[i])
print(min(dp[-1]))





0