結果

問題 No.2759 Take Pictures, Elements?
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-21 17:13:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 807 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 259,488 KB
最終ジャッジ日時 2024-09-21 17:14:10
合計ジャッジ時間 10,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 676 ms
253,568 KB
testcase_01 AC 807 ms
259,488 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 42 ms
54,400 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 44 ms
53,888 KB
testcase_07 AC 48 ms
54,016 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 500 ms
251,392 KB
testcase_10 AC 466 ms
251,520 KB
testcase_11 AC 478 ms
251,520 KB
testcase_12 AC 478 ms
251,456 KB
testcase_13 AC 471 ms
251,488 KB
testcase_14 AC 646 ms
251,904 KB
testcase_15 AC 637 ms
251,648 KB
testcase_16 AC 660 ms
251,904 KB
testcase_17 AC 615 ms
251,648 KB
testcase_18 AC 629 ms
251,776 KB
testcase_19 AC 599 ms
251,760 KB
testcase_20 AC 634 ms
251,900 KB
testcase_21 AC 43 ms
54,144 KB
testcase_22 AC 43 ms
54,124 KB
testcase_23 AC 42 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
e=[[] for i in range((m+1)*n)]
for i in range(m+1):
  for j in range(n):
    if j+1<n:
      e[i*n+j]+=[(i*n+j+1,1)]
    if j-1>=0:
      e[i*n+j]+=[(i*n+j-1,1)]
for i in range(m):
  for j in range(n):
    if a[j]==b[i]:
      e[i*n+j]+=[((i+1)*n+j,0)]
from collections import deque
q=deque()
X=10**10
v=[X]*(m+1)*n
v[0]=0
q.append((v[0],0))
while len(q)>0:
  sc,sp=q.popleft()
  for tp,tc in e[sp]:
    if v[tp]>sc+tc:
      v[tp]=sc+tc
      if tc:
        q.append((v[tp],tp))
      else:
        q.appendleft((v[tp],tp))
print(min(v[m*n:(m+1)*n]))
0