結果

問題 No.1077 Noelちゃんと星々4
ユーザー tcltktcltk
提出日時 2021-01-17 17:50:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 90,008 KB
最終ジャッジ日時 2024-05-07 07:26:39
合計ジャッジ時間 6,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
89,024 KB
testcase_01 AC 147 ms
89,008 KB
testcase_02 AC 260 ms
89,824 KB
testcase_03 AC 269 ms
89,724 KB
testcase_04 AC 197 ms
89,724 KB
testcase_05 AC 184 ms
89,508 KB
testcase_06 AC 196 ms
89,652 KB
testcase_07 AC 213 ms
89,876 KB
testcase_08 AC 192 ms
89,804 KB
testcase_09 AC 185 ms
89,796 KB
testcase_10 AC 259 ms
90,008 KB
testcase_11 AC 224 ms
89,760 KB
testcase_12 AC 213 ms
89,620 KB
testcase_13 AC 182 ms
89,672 KB
testcase_14 AC 261 ms
89,536 KB
testcase_15 AC 212 ms
89,892 KB
testcase_16 AC 194 ms
89,888 KB
testcase_17 AC 214 ms
89,896 KB
testcase_18 AC 266 ms
89,828 KB
testcase_19 AC 178 ms
89,348 KB
testcase_20 AC 153 ms
89,516 KB
testcase_21 AC 278 ms
89,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """10
# 3 14 15 92 65 35 89 79 32 38
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N = int(input()) + 1
    Y = [0] + list(map(int, input().split()))

    MaxY = max(Y)

    dp = [0 for _ in range(MaxY+1)]
    T = [0 for _ in range(MaxY+1)]
    for i in range(1, N):
        for k in range(MaxY + 1):
            dp[k] = T[k] + abs(Y[i] - k)
        T[0] = dp[0]
        for k in range(1, MaxY + 1):
            T[k] = min(T[k-1], dp[k])
    v = min(dp)
    print(v)

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