結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
75,748 KB
testcase_01 TLE -
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 41 ms
52,448 KB
testcase_04 AC 42 ms
52,908 KB
testcase_05 AC 41 ms
51,984 KB
testcase_06 AC 44 ms
52,028 KB
testcase_07 AC 41 ms
53,372 KB
testcase_08 AC 43 ms
52,972 KB
testcase_09 AC 49 ms
59,856 KB
testcase_10 AC 50 ms
60,268 KB
testcase_11 AC 49 ms
60,412 KB
testcase_12 AC 49 ms
59,504 KB
testcase_13 AC 47 ms
60,912 KB
testcase_14 AC 71 ms
68,932 KB
testcase_15 AC 70 ms
68,604 KB
testcase_16 AC 68 ms
68,728 KB
testcase_17 AC 68 ms
68,588 KB
testcase_18 AC 68 ms
68,240 KB
testcase_19 AC 67 ms
68,508 KB
testcase_20 AC 67 ms
67,848 KB
testcase_21 AC 41 ms
52,348 KB
testcase_22 AC 41 ms
52,912 KB
testcase_23 AC 40 ms
52,320 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