結果

問題 No.2759 Take Pictures, Elements?
ユーザー ikemizu-daiki-npikemizu-daiki-np
提出日時 2024-05-28 11:14:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 800 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 76,524 KB
最終ジャッジ日時 2024-05-28 11:14:17
合計ジャッジ時間 5,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
76,172 KB
testcase_01 TLE -
testcase_02 AC 38 ms
52,848 KB
testcase_03 AC 38 ms
52,684 KB
testcase_04 AC 39 ms
52,892 KB
testcase_05 AC 38 ms
52,368 KB
testcase_06 AC 38 ms
53,024 KB
testcase_07 AC 37 ms
52,448 KB
testcase_08 AC 38 ms
52,976 KB
testcase_09 AC 45 ms
59,220 KB
testcase_10 AC 43 ms
59,468 KB
testcase_11 AC 43 ms
61,280 KB
testcase_12 AC 44 ms
59,700 KB
testcase_13 AC 44 ms
60,492 KB
testcase_14 AC 63 ms
68,188 KB
testcase_15 AC 62 ms
68,716 KB
testcase_16 AC 63 ms
69,472 KB
testcase_17 AC 61 ms
68,468 KB
testcase_18 AC 62 ms
68,316 KB
testcase_19 AC 63 ms
69,760 KB
testcase_20 AC 63 ms
68,640 KB
testcase_21 AC 39 ms
52,816 KB
testcase_22 AC 39 ms
53,820 KB
testcase_23 AC 39 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y = map(int,input().split())	


a_list=list(map(int,input().split()))

# {val: [idx,list]}
a_dict={}


for idx, a in enumerate(a_list):
    if a in a_dict:
        a_dict[a]=[*a_dict[a], idx]
    else:
        a_dict[a]=[idx]

b_list = list(map(int,input().split()))

pre_pos=0

# {pos: total_count}
count_dict={0:0}

for b in b_list:
    pos_list=a_dict[b]
    
    temp_count_dict={}
    
    for p in pos_list:
        for key in count_dict:
            now_total=count_dict[key]
            if p in temp_count_dict:
                val=now_total+abs(p-key)
                if val < temp_count_dict[p]:
                    temp_count_dict[p]=val
            else:
                temp_count_dict[p]=now_total+abs(p-key)
    count_dict=temp_count_dict
            
print(min(count_dict.values()))
0