結果

問題 No.2673 A present from B
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-15 23:30:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,188 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-09-30 03:05:10
合計ジャッジ時間 7,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 56 ms
61,312 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 1,153 ms
75,776 KB
testcase_07 AC 1,146 ms
75,520 KB
testcase_08 AC 1,188 ms
75,660 KB
testcase_09 AC 44 ms
59,904 KB
testcase_10 AC 45 ms
61,056 KB
testcase_11 AC 42 ms
59,904 KB
testcase_12 AC 261 ms
68,736 KB
testcase_13 AC 156 ms
68,480 KB
testcase_14 AC 456 ms
71,808 KB
testcase_15 AC 135 ms
66,304 KB
testcase_16 AC 127 ms
66,176 KB
testcase_17 AC 70 ms
65,408 KB
testcase_18 AC 150 ms
66,688 KB
testcase_19 AC 60 ms
63,872 KB
testcase_20 AC 379 ms
70,272 KB
testcase_21 AC 752 ms
75,392 KB
testcase_22 AC 37 ms
51,840 KB
testcase_23 AC 36 ms
51,712 KB
testcase_24 AC 35 ms
51,968 KB
testcase_25 AC 34 ms
51,712 KB
testcase_26 AC 35 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
p=list(range(n))
for v in a:
	p[v-1],p[v]=p[v],p[v-1]
q=[n]*n
for i in range(n):
  q[p[i]]=i
for v in a[::-1]:
  p[v-1],p[v]=p[v],p[v-1]
  nq=q.copy()
  for i in range(n):
    for j in range(n):
      nq[p[i]]=min(nq[p[i]],q[p[j]]+abs(i-j))
  q=nq
print(*q[1:])
0