結果

問題 No.2673 A present from B
ユーザー ゼットゼット
提出日時 2024-03-15 22:26:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 795 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 78,608 KB
最終ジャッジ日時 2024-09-30 01:51:01
合計ジャッジ時間 11,572 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,944 KB
testcase_01 AC 38 ms
52,460 KB
testcase_02 AC 39 ms
53,612 KB
testcase_03 AC 38 ms
53,136 KB
testcase_04 AC 78 ms
74,464 KB
testcase_05 AC 38 ms
52,760 KB
testcase_06 AC 1,891 ms
78,236 KB
testcase_07 AC 1,826 ms
78,200 KB
testcase_08 TLE -
testcase_09 AC 46 ms
60,864 KB
testcase_10 AC 46 ms
61,140 KB
testcase_11 AC 43 ms
60,852 KB
testcase_12 AC 413 ms
76,588 KB
testcase_13 AC 256 ms
76,704 KB
testcase_14 AC 710 ms
77,268 KB
testcase_15 AC 241 ms
76,468 KB
testcase_16 AC 225 ms
76,828 KB
testcase_17 AC 115 ms
75,152 KB
testcase_18 AC 253 ms
76,492 KB
testcase_19 AC 85 ms
74,664 KB
testcase_20 AC 624 ms
76,644 KB
testcase_21 AC 1,201 ms
77,636 KB
testcase_22 AC 38 ms
53,748 KB
testcase_23 AC 37 ms
52,788 KB
testcase_24 AC 36 ms
52,552 KB
testcase_25 AC 35 ms
53,140 KB
testcase_26 AC 35 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
for i in range(M):
  A[i]-=1
dp=[[10**10]*N for i in range(M+1)]
for j in range(N):
  dp[M][j]=j
for i in range(M,0,-1):
  for j in range(N):
    for k in range(N):
      if k<=j:
        if k<=A[i-1]<j:
          cost1=j-k-1
        else:
          if j==k and (j==A[i-1] or j==A[i-1]+1):
            cost1=1
            continue
          cost1=j-k
      else:
        cost1=10**10
      if j<=k:
        if j<=A[i-1]<k:
          cost2=k-j-1
        else:
          if (j==A[i-1] or j==A[i-1]+1) and j==k:
            cost2=1
            continue
          cost2=k-j
      else:
        cost2=10**10
      dp[i-1][j]=min(dp[i-1][j],dp[i][k]+min(cost1,cost2))
result=[]
for i in range(1,N):
  result.append(dp[0][i])
print(*result)
0