結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
84,208 KB
testcase_01 AC 136 ms
84,280 KB
testcase_02 AC 43 ms
53,620 KB
testcase_03 AC 44 ms
52,548 KB
testcase_04 AC 45 ms
53,488 KB
testcase_05 AC 43 ms
52,568 KB
testcase_06 AC 42 ms
53,540 KB
testcase_07 AC 43 ms
52,432 KB
testcase_08 AC 42 ms
52,612 KB
testcase_09 AC 73 ms
73,228 KB
testcase_10 AC 73 ms
73,880 KB
testcase_11 AC 72 ms
72,820 KB
testcase_12 AC 72 ms
73,784 KB
testcase_13 AC 70 ms
73,180 KB
testcase_14 AC 101 ms
84,288 KB
testcase_15 AC 99 ms
84,548 KB
testcase_16 AC 104 ms
84,116 KB
testcase_17 AC 96 ms
84,148 KB
testcase_18 AC 97 ms
84,520 KB
testcase_19 AC 96 ms
84,364 KB
testcase_20 AC 95 ms
84,184 KB
testcase_21 AC 41 ms
53,176 KB
testcase_22 AC 43 ms
53,644 KB
testcase_23 AC 43 ms
53,152 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