結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
84,600 KB
testcase_01 AC 134 ms
84,392 KB
testcase_02 AC 38 ms
52,840 KB
testcase_03 AC 37 ms
54,216 KB
testcase_04 AC 36 ms
53,092 KB
testcase_05 AC 35 ms
52,564 KB
testcase_06 AC 34 ms
53,744 KB
testcase_07 AC 34 ms
52,448 KB
testcase_08 AC 34 ms
52,644 KB
testcase_09 AC 55 ms
73,456 KB
testcase_10 AC 56 ms
73,304 KB
testcase_11 AC 59 ms
73,124 KB
testcase_12 AC 56 ms
73,888 KB
testcase_13 AC 61 ms
73,936 KB
testcase_14 AC 80 ms
84,308 KB
testcase_15 AC 83 ms
84,432 KB
testcase_16 AC 84 ms
84,588 KB
testcase_17 AC 79 ms
84,280 KB
testcase_18 AC 78 ms
84,824 KB
testcase_19 AC 79 ms
84,560 KB
testcase_20 AC 80 ms
84,272 KB
testcase_21 AC 35 ms
52,260 KB
testcase_22 AC 35 ms
52,936 KB
testcase_23 AC 36 ms
52,588 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