結果

問題 No.2673 A present from B
ユーザー nikoro256nikoro256
提出日時 2024-03-19 15:13:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 870 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-09-30 05:32:01
合計ジャッジ時間 6,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 58 ms
63,488 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 870 ms
75,392 KB
testcase_07 AC 855 ms
75,392 KB
testcase_08 AC 865 ms
75,264 KB
testcase_09 AC 45 ms
60,032 KB
testcase_10 AC 47 ms
60,288 KB
testcase_11 AC 45 ms
59,776 KB
testcase_12 AC 200 ms
67,584 KB
testcase_13 AC 129 ms
66,944 KB
testcase_14 AC 320 ms
69,888 KB
testcase_15 AC 107 ms
65,024 KB
testcase_16 AC 101 ms
65,024 KB
testcase_17 AC 73 ms
63,872 KB
testcase_18 AC 111 ms
65,280 KB
testcase_19 AC 59 ms
63,872 KB
testcase_20 AC 277 ms
68,736 KB
testcase_21 AC 572 ms
73,984 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
times=[]
dat=[i for i in range(N)]
times.append(dat)
for i in range(M):
    dat[A[i]-1],dat[A[i]]=dat[A[i]],dat[A[i]-1]
    times.append(dat)
dp=[10**9 for _ in range(N)]
dp[0]=0
for i in range(N):
    for j in range(N):
        dp[i]=min(dp[i],dp[j]+abs(j-i))
for i in range(M-1,-1,-1):
    dp[A[i]-1],dp[A[i]]=dp[A[i]],dp[A[i]-1]
    for i in range(N):
        for j in range(N):
            dp[i]=min(dp[i],dp[j]+abs(j-i))
print(*dp[1:])
0