結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
76,624 KB
testcase_01 AC 1,463 ms
76,020 KB
testcase_02 AC 34 ms
52,476 KB
testcase_03 AC 39 ms
52,884 KB
testcase_04 AC 34 ms
52,252 KB
testcase_05 AC 33 ms
53,276 KB
testcase_06 AC 32 ms
53,852 KB
testcase_07 AC 33 ms
52,264 KB
testcase_08 AC 33 ms
52,252 KB
testcase_09 AC 37 ms
60,044 KB
testcase_10 AC 37 ms
60,652 KB
testcase_11 AC 37 ms
59,632 KB
testcase_12 AC 37 ms
59,852 KB
testcase_13 AC 37 ms
59,844 KB
testcase_14 AC 52 ms
68,520 KB
testcase_15 AC 51 ms
68,028 KB
testcase_16 AC 53 ms
68,176 KB
testcase_17 AC 54 ms
68,452 KB
testcase_18 AC 53 ms
68,776 KB
testcase_19 AC 54 ms
69,172 KB
testcase_20 AC 55 ms
68,632 KB
testcase_21 AC 34 ms
53,696 KB
testcase_22 AC 35 ms
52,204 KB
testcase_23 AC 35 ms
52,836 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