結果

問題 No.2759 Take Pictures, Elements?
ユーザー detteiuudetteiuu
提出日時 2024-05-17 21:59:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 84,772 KB
最終ジャッジ日時 2024-05-17 21:59:18
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
84,296 KB
testcase_01 AC 116 ms
84,416 KB
testcase_02 AC 35 ms
52,396 KB
testcase_03 AC 34 ms
53,376 KB
testcase_04 AC 35 ms
53,384 KB
testcase_05 AC 34 ms
52,460 KB
testcase_06 AC 35 ms
53,632 KB
testcase_07 AC 36 ms
53,080 KB
testcase_08 AC 33 ms
53,544 KB
testcase_09 AC 53 ms
73,004 KB
testcase_10 AC 54 ms
73,500 KB
testcase_11 AC 56 ms
74,812 KB
testcase_12 AC 54 ms
73,460 KB
testcase_13 AC 69 ms
74,380 KB
testcase_14 AC 93 ms
84,456 KB
testcase_15 AC 78 ms
84,232 KB
testcase_16 AC 79 ms
84,732 KB
testcase_17 AC 82 ms
84,264 KB
testcase_18 AC 78 ms
84,476 KB
testcase_19 AC 80 ms
84,408 KB
testcase_20 AC 78 ms
84,772 KB
testcase_21 AC 34 ms
54,268 KB
testcase_22 AC 34 ms
53,700 KB
testcase_23 AC 34 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

IDX = dict()
for i in range(N):
    if A[i] not in IDX:
        IDX[A[i]] = [i]
    else:
        IDX[A[i]].append(i)

INF = 10**18
dp = [[INF]*N for _ in range(Q+1)]
dp[0][0] = 0
for i in range(Q):
    for j in range(N):
        if dp[i][j] != INF:
            if A[j] == B[i]:
                dp[i+1][j] = min(dp[i+1][j], dp[i][j])
            else:
                b = bisect_left(IDX[B[i]], j)
                if b >= 1:
                    dp[i+1][IDX[B[i]][b-1]] = min(dp[i+1][IDX[B[i]][b-1]], dp[i][j]+abs(IDX[B[i]][b-1]-j))
                if b < len(IDX[B[i]]):
                    dp[i+1][IDX[B[i]][b]] = min(dp[i+1][IDX[B[i]][b]], dp[i][j]+abs(IDX[B[i]][b]-j))

print(min(dp[-1]))
0