結果

問題 No.2759 Take Pictures, Elements?
ユーザー yansi819yansi819
提出日時 2024-05-28 10:27:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 251,264 KB
最終ジャッジ日時 2024-05-28 10:27:28
合計ジャッジ時間 9,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 554 ms
249,540 KB
testcase_01 AC 606 ms
251,264 KB
testcase_02 AC 36 ms
54,148 KB
testcase_03 AC 35 ms
53,856 KB
testcase_04 AC 36 ms
55,228 KB
testcase_05 AC 35 ms
54,656 KB
testcase_06 AC 37 ms
54,556 KB
testcase_07 AC 39 ms
55,244 KB
testcase_08 AC 43 ms
54,504 KB
testcase_09 AC 366 ms
243,276 KB
testcase_10 AC 367 ms
242,932 KB
testcase_11 AC 383 ms
246,804 KB
testcase_12 AC 404 ms
246,764 KB
testcase_13 AC 379 ms
246,856 KB
testcase_14 AC 532 ms
243,328 KB
testcase_15 AC 532 ms
247,448 KB
testcase_16 AC 528 ms
247,440 KB
testcase_17 AC 526 ms
243,448 KB
testcase_18 AC 515 ms
243,552 KB
testcase_19 AC 506 ms
243,480 KB
testcase_20 AC 550 ms
247,540 KB
testcase_21 AC 41 ms
54,624 KB
testcase_22 AC 41 ms
54,500 KB
testcase_23 AC 37 ms
54,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
G = [[] for _ in range(N * Q + N + 1)]
for j in range(Q):
    for i in range(N):
        if i == N - 1: continue
        G[j * N + i].append((j * N + i + 1, 1))
        G[j * N + i + 1].append((j * N + i, 1))
    for i in range(N):
        if A[i] != B[j]: continue
        if j != Q - 1: G[j * N + i].append(((j + 1) * N + i, 0))
        else: G[j * N + i].append((N * Q, 0))
dist = [10 ** 9 + 1] * (N * Q + 1)
D = deque([0])
dist[0] = 0
while len(D) > 0:
    v = D.popleft()
    for nv, c in G[v]:
        d = dist[v] + c
        if d < dist[nv]:
            dist[nv] = d
            if c: D.append(nv)
            else: D.appendleft(nv)
print(dist[N * Q])
0