結果

問題 No.1077 Noelちゃんと星々4
ユーザー rlangevinrlangevin
提出日時 2023-02-03 12:41:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-07-02 13:57:31
合計ジャッジ時間 3,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,416 KB
testcase_01 AC 49 ms
62,336 KB
testcase_02 AC 164 ms
77,984 KB
testcase_03 AC 175 ms
78,976 KB
testcase_04 AC 96 ms
76,928 KB
testcase_05 AC 85 ms
76,380 KB
testcase_06 AC 103 ms
76,800 KB
testcase_07 AC 113 ms
77,240 KB
testcase_08 AC 96 ms
76,928 KB
testcase_09 AC 93 ms
76,928 KB
testcase_10 AC 180 ms
78,592 KB
testcase_11 AC 138 ms
77,824 KB
testcase_12 AC 120 ms
77,544 KB
testcase_13 AC 82 ms
75,704 KB
testcase_14 AC 174 ms
78,800 KB
testcase_15 AC 117 ms
77,440 KB
testcase_16 AC 99 ms
76,744 KB
testcase_17 AC 124 ms
77,952 KB
testcase_18 AC 173 ms
78,976 KB
testcase_19 AC 79 ms
75,780 KB
testcase_20 AC 41 ms
60,672 KB
testcase_21 AC 191 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int, input().split()))
M = 10005
inf = 10 ** 18
pre = [0] * M
Acp = [0] * (M + 1)
for i in range(N):
    dp = [0] * M
    Ac = [inf] * (M + 1)
    for y in range(M):
        dp[y] = Acp[y + 1] + abs(y - Y[i])
        Ac[y + 1] = min(Ac[y], dp[y])
    dp, pre = pre, dp
    Acp, Ac = Ac, Acp

print(min(pre))
0