結果

問題 No.2759 Take Pictures, Elements?
ユーザー ikemizu-daiki-npikemizu-daiki-np
提出日時 2024-05-27 19:03:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 800 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,324 KB
最終ジャッジ日時 2024-12-20 20:35:49
合計ジャッジ時間 11,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 34 ms
10,880 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 34 ms
11,008 KB
testcase_12 AC 35 ms
10,880 KB
testcase_13 AC 35 ms
10,880 KB
testcase_14 AC 56 ms
10,752 KB
testcase_15 AC 59 ms
10,752 KB
testcase_16 AC 62 ms
10,752 KB
testcase_17 AC 58 ms
10,752 KB
testcase_18 AC 60 ms
10,752 KB
testcase_19 AC 55 ms
10,880 KB
testcase_20 AC 59 ms
10,752 KB
testcase_21 AC 33 ms
10,624 KB
testcase_22 AC 33 ms
10,624 KB
testcase_23 AC 32 ms
28,324 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