結果

問題 No.2673 A present from B
ユーザー titiatitia
提出日時 2024-03-16 03:29:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,133 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-09-30 03:49:11
合計ジャッジ時間 7,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 49 ms
60,928 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 1,133 ms
75,648 KB
testcase_07 AC 1,128 ms
75,648 KB
testcase_08 AC 1,049 ms
75,512 KB
testcase_09 AC 46 ms
60,160 KB
testcase_10 AC 46 ms
61,312 KB
testcase_11 AC 44 ms
59,648 KB
testcase_12 AC 261 ms
69,632 KB
testcase_13 AC 158 ms
69,504 KB
testcase_14 AC 427 ms
72,704 KB
testcase_15 AC 136 ms
66,944 KB
testcase_16 AC 127 ms
66,688 KB
testcase_17 AC 67 ms
66,176 KB
testcase_18 AC 145 ms
67,328 KB
testcase_19 AC 60 ms
64,128 KB
testcase_20 AC 377 ms
71,296 KB
testcase_21 AC 736 ms
75,520 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 36 ms
51,712 KB
testcase_24 AC 34 ms
51,712 KB
testcase_25 AC 35 ms
51,456 KB
testcase_26 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=list(map(int,input().split()))

L=list(range(N))

for a in A:
    x=a
    y=a-1

    L[x],L[y]=L[y],L[x]

ANS=[1<<60]*N

for i in range(N):
    ANS[L[i]]=i

for a in A[::-1]:
    x=a
    y=a-1

    L[x],L[y]=L[y],L[x]

    ANS2=ANS[:]

    for i in range(N):
        for j in range(N):
            ANS2[L[j]]=min(ANS2[L[j]],ANS[L[i]]+abs(i-j))

    ANS=ANS2

print(*ANS[1:])
    
0