結果

問題 No.2759 Take Pictures, Elements?
ユーザー hiro1729hiro1729
提出日時 2024-05-17 22:32:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,668 KB
最終ジャッジ日時 2024-05-17 22:32:28
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
76,204 KB
testcase_01 AC 91 ms
76,136 KB
testcase_02 AC 40 ms
53,776 KB
testcase_03 AC 39 ms
52,684 KB
testcase_04 AC 38 ms
52,328 KB
testcase_05 AC 37 ms
52,768 KB
testcase_06 AC 39 ms
52,964 KB
testcase_07 AC 39 ms
54,064 KB
testcase_08 AC 38 ms
53,016 KB
testcase_09 AC 86 ms
76,004 KB
testcase_10 AC 87 ms
76,144 KB
testcase_11 AC 84 ms
76,668 KB
testcase_12 AC 87 ms
76,128 KB
testcase_13 AC 87 ms
76,176 KB
testcase_14 AC 91 ms
76,140 KB
testcase_15 AC 90 ms
76,056 KB
testcase_16 AC 85 ms
76,516 KB
testcase_17 AC 102 ms
76,144 KB
testcase_18 AC 86 ms
76,128 KB
testcase_19 AC 89 ms
76,148 KB
testcase_20 AC 86 ms
76,292 KB
testcase_21 AC 39 ms
52,776 KB
testcase_22 AC 38 ms
53,152 KB
testcase_23 AC 39 ms
53,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 10 ** 15

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
dp_left = [0] * N
dp_right = [inf] * N
dp_right[0] = 0
for i in B:
	ndp = [inf] * N
	for j in range(N):
		if A[j] == i:
			ndp[j] = min(dp_left[j] + j, dp_right[j] - j)
	ndp_left = [inf] * N
	ndp_left[0] = ndp[0]
	ndp_right = [inf] * N
	for j in range(1, N):
		ndp_left[j] = min(ndp_left[j - 1], ndp[j] - j)
	ndp_right[N - 1] = ndp[N - 1] + (N - 1)
	for j in range(N - 1, 0, -1):
		ndp_right[j - 1] = min(ndp_right[j], ndp[j - 1] + (j - 1))
	dp_left = ndp_left
	dp_right = ndp_right
print(min(min(dp_left[i] + i for i in range(N)), min(dp_right[i] - i for i in range(N))))
0