結果

問題 No.2759 Take Pictures, Elements?
ユーザー tknrtknr
提出日時 2024-05-28 12:08:41
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
MLE  
(最初)
実行時間 -
コード長 861 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 901,912 KB
最終ジャッジ日時 2024-12-20 20:45:19
合計ジャッジ時間 27,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 44 ms
52,520 KB
testcase_03 WA -
testcase_04 AC 44 ms
53,688 KB
testcase_05 AC 45 ms
52,440 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 54 ms
61,196 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 46 ms
52,392 KB
testcase_22 AC 44 ms
53,244 KB
testcase_23 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

data = []
current_index = 0

for idx, b in enumerate(B):
    if idx == 0:
        target_indexes = [i for i, j in enumerate(A) if j == b]
        res = []
        for index in target_indexes:
            cost = abs(index - current_index)
            res.append({"index": index, "cost": cost})
        data.append(res)
    else:
        current_indexes = data[idx - 1]
        target_indexes = [i for i, j in enumerate(A) if j == b]
        res = []
        for c_index in current_indexes:
            for t_index in target_indexes:
                cost = c_index["cost"] + abs(t_index - c_index["index"])
                res.append({"index": t_index, "cost": cost})
        data.append(res)

print(sorted(data[N - 2], key=lambda x: x["cost"])[0]["cost"])
0