結果

問題 No.2759 Take Pictures, Elements?
ユーザー ゼットゼット
提出日時 2024-05-17 21:43:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 84,640 KB
最終ジャッジ日時 2024-12-20 13:28:08
合計ジャッジ時間 2,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
84,372 KB
testcase_01 AC 145 ms
84,340 KB
testcase_02 AC 42 ms
52,824 KB
testcase_03 AC 40 ms
52,860 KB
testcase_04 AC 41 ms
53,024 KB
testcase_05 AC 41 ms
52,752 KB
testcase_06 AC 42 ms
53,012 KB
testcase_07 AC 42 ms
53,144 KB
testcase_08 AC 41 ms
52,712 KB
testcase_09 AC 62 ms
73,232 KB
testcase_10 AC 64 ms
73,740 KB
testcase_11 AC 63 ms
73,176 KB
testcase_12 AC 65 ms
74,496 KB
testcase_13 AC 64 ms
73,452 KB
testcase_14 AC 94 ms
84,216 KB
testcase_15 AC 98 ms
84,632 KB
testcase_16 AC 97 ms
84,212 KB
testcase_17 AC 92 ms
84,144 KB
testcase_18 AC 92 ms
84,424 KB
testcase_19 AC 91 ms
84,420 KB
testcase_20 AC 92 ms
84,640 KB
testcase_21 AC 41 ms
53,164 KB
testcase_22 AC 40 ms
53,740 KB
testcase_23 AC 41 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
T={}
C=set(A)
C=list(C)
C.sort()
for i in range(len(C)):
  T[C[i]]=i
M=len(C)
R=[set() for i in range(M)]
for i in range(N):
  R[T[A[i]]].add(i)
L=[0]
dp=[[10**15]*N for i in range(Q+1)]
dp[0][0]=0
from bisect import bisect_right
for i in range(Q):
  L2=[]
  for j in range(N):
    if A[j]==B[i]:
      L2.append(j)
      pos=bisect_right(L,j)
      if pos>0:
        dp[i+1][j]=min(dp[i][L[pos-1]]+j-L[pos-1],dp[i+1][j])
      if pos<len(L):
        dp[i+1][j]=min(dp[i+1][j],dp[i][L[pos]]+L[pos]-j)
  L=L2[:]
print(min(dp[Q]))
  
  
0