結果

問題 No.1077 Noelちゃんと星々4
ユーザー tcltktcltk
提出日時 2021-01-17 17:50:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 90,004 KB
最終ジャッジ日時 2024-11-29 22:17:41
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
89,092 KB
testcase_01 AC 128 ms
89,144 KB
testcase_02 AC 220 ms
89,672 KB
testcase_03 AC 237 ms
89,528 KB
testcase_04 AC 166 ms
89,968 KB
testcase_05 AC 154 ms
89,740 KB
testcase_06 AC 175 ms
89,780 KB
testcase_07 AC 189 ms
89,492 KB
testcase_08 AC 167 ms
89,980 KB
testcase_09 AC 164 ms
89,404 KB
testcase_10 AC 235 ms
89,484 KB
testcase_11 AC 199 ms
89,592 KB
testcase_12 AC 194 ms
89,836 KB
testcase_13 AC 159 ms
89,276 KB
testcase_14 AC 230 ms
89,920 KB
testcase_15 AC 190 ms
89,780 KB
testcase_16 AC 168 ms
89,536 KB
testcase_17 AC 190 ms
90,004 KB
testcase_18 AC 234 ms
89,812 KB
testcase_19 AC 156 ms
89,344 KB
testcase_20 AC 133 ms
89,644 KB
testcase_21 AC 253 ms
89,800 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