結果

問題 No.2759 Take Pictures, Elements?
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-21 17:12:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 678 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 240,740 KB
最終ジャッジ日時 2024-09-21 17:13:00
合計ジャッジ時間 8,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 65 ms
53,888 KB
testcase_03 RE -
testcase_04 AC 43 ms
53,632 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 42 ms
54,864 KB
testcase_22 RE -
testcase_23 AC 42 ms
55,636 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*(m+1)+j]+=[(i*(m+1)+j+1,1)]
    if j-1>=0:
      e[i*(m+1)+j]+=[(i*(m+1)+j-1,1)]
for i in range(m):
  for j in range(n):
    if a[j]==b[i]:
      e[i*(m+1)+j]+=[((i+1)*(m+1)+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+1)*(n-1):(m+1)*n]))
0