結果

問題 No.1077 Noelちゃんと星々4
ユーザー kurimupykurimupy
提出日時 2020-06-12 21:45:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 271,828 KB
最終ジャッジ日時 2024-06-24 04:44:16
合計ジャッジ時間 8,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
136,532 KB
testcase_01 AC 191 ms
153,744 KB
testcase_02 AC 438 ms
221,724 KB
testcase_03 AC 511 ms
254,056 KB
testcase_04 AC 298 ms
187,188 KB
testcase_05 AC 259 ms
168,136 KB
testcase_06 AC 319 ms
185,112 KB
testcase_07 AC 325 ms
186,340 KB
testcase_08 AC 306 ms
184,968 KB
testcase_09 AC 271 ms
169,660 KB
testcase_10 AC 522 ms
253,408 KB
testcase_11 AC 408 ms
220,380 KB
testcase_12 AC 368 ms
204,096 KB
testcase_13 AC 256 ms
168,120 KB
testcase_14 AC 511 ms
255,216 KB
testcase_15 AC 360 ms
202,900 KB
testcase_16 AC 302 ms
187,500 KB
testcase_17 AC 376 ms
205,036 KB
testcase_18 AC 514 ms
255,124 KB
testcase_19 AC 255 ms
167,596 KB
testcase_20 AC 165 ms
136,520 KB
testcase_21 AC 603 ms
271,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
K = list(map(int, input().split()))
# dp[N][X] = N版目まで見て条件をみたし、かつ最後の高さが[x以下]となるような物の最小コスト値
# 計算量 10**7
dp = [[10**20 for i in range(10001)] for j in range(1001)]
for i in range(10001):
    dp[1][i] = abs(i-K[0])
    if i > 0:
        dp[1][i] = min(dp[1][i], dp[1][i-1])

# 初期条件
for i in range(1, N):
    now = K[i]
    for j in range(10001):
        # 最後の高さをjとするとき
        dp[i+1][j] = dp[i][j]+abs(now-j)
        if j > 0:
            dp[i+1][j] = min(dp[i+1][j], dp[i+1][j-1])
ans = float("inf")
for i in range(10001):
    ans = min(ans, dp[N][i])
print(ans)
0