結果

問題 No.2759 Take Pictures, Elements?
ユーザー ikemizu-daiki-npikemizu-daiki-np
提出日時 2024-05-28 11:27:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,700 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-12-20 20:44:25
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 358 ms
75,928 KB
testcase_01 AC 1,700 ms
75,888 KB
testcase_02 AC 40 ms
53,180 KB
testcase_03 AC 38 ms
53,120 KB
testcase_04 AC 40 ms
52,316 KB
testcase_05 AC 39 ms
52,908 KB
testcase_06 AC 42 ms
53,556 KB
testcase_07 AC 39 ms
52,180 KB
testcase_08 AC 40 ms
53,304 KB
testcase_09 AC 43 ms
59,476 KB
testcase_10 AC 46 ms
59,876 KB
testcase_11 AC 49 ms
59,548 KB
testcase_12 AC 47 ms
60,600 KB
testcase_13 AC 46 ms
60,384 KB
testcase_14 AC 66 ms
67,724 KB
testcase_15 AC 62 ms
68,340 KB
testcase_16 AC 66 ms
67,632 KB
testcase_17 AC 61 ms
69,648 KB
testcase_18 AC 62 ms
68,872 KB
testcase_19 AC 64 ms
69,652 KB
testcase_20 AC 62 ms
68,324 KB
testcase_21 AC 41 ms
52,820 KB
testcase_22 AC 39 ms
52,872 KB
testcase_23 AC 39 ms
52,632 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, value in count_dict.items():
            if p in temp_count_dict:
                val=value+abs(p-key)
                if val < temp_count_dict[p]:
                    temp_count_dict[p]=val
            else:
                temp_count_dict[p]=value+abs(p-key)
    count_dict=temp_count_dict
            
print(min(count_dict.values()))
0