結果

問題 No.2759 Take Pictures, Elements?
ユーザー CecilCecil
提出日時 2024-05-17 22:25:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,672 KB
実行使用メモリ 65,468 KB
最終ジャッジ日時 2024-05-17 22:25:45
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 51 ms
54,820 KB
testcase_03 AC 52 ms
55,364 KB
testcase_04 AC 51 ms
54,240 KB
testcase_05 AC 51 ms
54,904 KB
testcase_06 WA -
testcase_07 AC 50 ms
54,364 KB
testcase_08 AC 50 ms
54,200 KB
testcase_09 AC 59 ms
62,484 KB
testcase_10 AC 62 ms
62,604 KB
testcase_11 AC 60 ms
62,852 KB
testcase_12 AC 61 ms
62,212 KB
testcase_13 AC 61 ms
63,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 51 ms
54,136 KB
testcase_22 AC 51 ms
55,236 KB
testcase_23 AC 51 ms
54,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd
import bisect

N,Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
idx = dd(list)
for i in range(N):
    idx[A[i]].append(i)
ans = 0
pre = 0
for i in range(Q):
    #print("###")
    #print(pre)
    r = bisect.bisect_left(idx[B[i]], pre)
    r = min(len(idx[B[i]])-1,r)
    l = max(0, r-1)
    #print(idx[B[i]][r],idx[B[i]][l])
    #print("###")
    if abs(idx[B[i]][r]-pre)<abs(idx[B[i]][l]-pre):
        ans += abs(idx[B[i]][r]-pre)
        pre = idx[B[i]][r]
    else:
        ans += abs(idx[B[i]][l]-pre)
        pre = idx[B[i]][l]
print(ans)
0