結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,824 KB
testcase_01 AC 32 ms
53,288 KB
testcase_02 AC 32 ms
53,084 KB
testcase_03 AC 32 ms
52,812 KB
testcase_04 AC 66 ms
72,004 KB
testcase_05 AC 33 ms
52,628 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 TLE -
testcase_09 AC 44 ms
61,740 KB
testcase_10 WA -
testcase_11 AC 41 ms
60,484 KB
testcase_12 AC 443 ms
76,652 KB
testcase_13 WA -
testcase_14 AC 714 ms
76,884 KB
testcase_15 AC 204 ms
76,844 KB
testcase_16 AC 206 ms
76,156 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 75 ms
73,184 KB
testcase_20 AC 606 ms
77,044 KB
testcase_21 AC 1,344 ms
77,728 KB
testcase_22 AC 34 ms
53,052 KB
testcase_23 AC 32 ms
52,580 KB
testcase_24 WA -
testcase_25 AC 32 ms
54,092 KB
testcase_26 AC 34 ms
52,652 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]:
            if j<N-2:
              cost1=1
            else:
              cost1=2
            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] and j==k:
            if j<N-2:
              cost2=1
            else:
              cost2=2
            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