結果

問題 No.1077 Noelちゃんと星々4
ユーザー c-yanc-yan
提出日時 2020-06-14 09:08:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,689 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-06-27 00:17:42
合計ジャッジ時間 10,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 671 ms
82,944 KB
testcase_03 AC 1,212 ms
87,764 KB
testcase_04 AC 104 ms
77,040 KB
testcase_05 AC 80 ms
76,160 KB
testcase_06 AC 145 ms
77,824 KB
testcase_07 AC 329 ms
77,936 KB
testcase_08 AC 116 ms
76,928 KB
testcase_09 AC 98 ms
76,672 KB
testcase_10 AC 1,244 ms
87,760 KB
testcase_11 AC 398 ms
80,728 KB
testcase_12 AC 260 ms
79,368 KB
testcase_13 AC 94 ms
76,132 KB
testcase_14 AC 1,146 ms
87,168 KB
testcase_15 AC 239 ms
78,928 KB
testcase_16 AC 117 ms
76,740 KB
testcase_17 AC 324 ms
79,900 KB
testcase_18 AC 1,307 ms
88,320 KB
testcase_19 AC 78 ms
75,728 KB
testcase_20 AC 40 ms
52,480 KB
testcase_21 AC 1,689 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = float('inf')

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

a = sorted(set(Y))
maxY = max(Y)

dp = [[INF] * len(a) for _ in range(N)]

for i in range(len(a)):
    dp[0][i] = abs(Y[0] - a[i])

for i in range(1, N):
    for j in range(len(a)):
        dp[i][j] = min(dp[i - 1][:j+1]) + abs(Y[i] - a[j])

print(min(dp[N - 1]))
0