結果

問題 No.2759 Take Pictures, Elements?
ユーザー ntudantuda
提出日時 2024-05-18 13:33:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,492 KB
最終ジャッジ日時 2024-05-18 13:34:01
合計ジャッジ時間 3,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
76,140 KB
testcase_01 AC 94 ms
76,476 KB
testcase_02 AC 36 ms
52,992 KB
testcase_03 AC 38 ms
52,488 KB
testcase_04 AC 35 ms
52,952 KB
testcase_05 AC 34 ms
52,472 KB
testcase_06 AC 35 ms
52,936 KB
testcase_07 AC 36 ms
54,216 KB
testcase_08 AC 35 ms
52,400 KB
testcase_09 AC 79 ms
76,192 KB
testcase_10 AC 79 ms
76,272 KB
testcase_11 AC 79 ms
76,044 KB
testcase_12 AC 79 ms
76,492 KB
testcase_13 AC 86 ms
76,260 KB
testcase_14 AC 74 ms
76,456 KB
testcase_15 AC 78 ms
76,100 KB
testcase_16 AC 81 ms
76,352 KB
testcase_17 AC 81 ms
76,268 KB
testcase_18 AC 81 ms
76,308 KB
testcase_19 AC 82 ms
76,068 KB
testcase_20 AC 82 ms
76,172 KB
testcase_21 AC 38 ms
52,756 KB
testcase_22 AC 37 ms
53,136 KB
testcase_23 AC 37 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
INF = 10 ** 6
dp = [0] + [INF] * (N - 1)
for b in B:
    dp1 = [INF] * N
    dp2 = [INF] * N
    for i in range(N):
        j = N - i - 1
        if i == 0:
            dp1[i] = dp[i]
            dp2[j] = dp[j]
        else:
            dp1[i] = min(dp[i], dp1[i - 1] + 1)
            dp2[j] = min(dp[j], dp2[j + 1] + 1)
    dp = [INF] * N
    for i in range(N):
        if A[i] == b:
            dp[i] = min(dp1[i], dp2[i])

print(min(dp))
0