結果

問題 No.1077 Noelちゃんと星々4
ユーザー tamatotamato
提出日時 2020-06-12 21:31:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,820 KB
実行使用メモリ 153,988 KB
最終ジャッジ日時 2024-06-24 04:30:42
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,116 KB
testcase_01 AC 45 ms
60,780 KB
testcase_02 AC 228 ms
129,396 KB
testcase_03 AC 276 ms
145,416 KB
testcase_04 AC 123 ms
96,868 KB
testcase_05 AC 107 ms
91,304 KB
testcase_06 AC 141 ms
102,848 KB
testcase_07 AC 149 ms
107,120 KB
testcase_08 AC 129 ms
98,876 KB
testcase_09 AC 117 ms
95,840 KB
testcase_10 AC 272 ms
145,532 KB
testcase_11 AC 197 ms
120,784 KB
testcase_12 AC 170 ms
112,976 KB
testcase_13 AC 101 ms
90,596 KB
testcase_14 AC 264 ms
143,708 KB
testcase_15 AC 167 ms
111,716 KB
testcase_16 AC 131 ms
99,400 KB
testcase_17 AC 183 ms
116,536 KB
testcase_18 AC 274 ms
146,988 KB
testcase_19 AC 99 ms
89,948 KB
testcase_20 AC 45 ms
60,624 KB
testcase_21 AC 297 ms
153,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10**10


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    H = list(map(int, input().split()))

    dp = [[inf] * (10**4+1) for _ in range(N+1)]
    dp[0][1] = 0
    for i in range(N):
        h = H[i]
        m = inf
        for j in range(1, 10001):
            m = min(m, dp[i][j])
            dp[i+1][j] = min(dp[i+1][j], m + abs(h - j))
    print(min(dp[-1]))


if __name__ == '__main__':
    main()
0