結果

問題 No.1077 Noelちゃんと星々4
ユーザー c-yanc-yan
提出日時 2020-06-14 09:12:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 795 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,000 KB
最終ジャッジ日時 2024-06-27 00:19:12
合計ジャッジ時間 6,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 415 ms
28,544 KB
testcase_03 AC 673 ms
40,064 KB
testcase_04 AC 87 ms
13,440 KB
testcase_05 AC 61 ms
12,160 KB
testcase_06 AC 128 ms
15,232 KB
testcase_07 AC 156 ms
16,896 KB
testcase_08 AC 97 ms
13,952 KB
testcase_09 AC 77 ms
12,928 KB
testcase_10 AC 649 ms
40,704 KB
testcase_11 AC 284 ms
23,296 KB
testcase_12 AC 212 ms
19,328 KB
testcase_13 AC 59 ms
12,160 KB
testcase_14 AC 619 ms
38,912 KB
testcase_15 AC 194 ms
18,688 KB
testcase_16 AC 95 ms
13,952 KB
testcase_17 AC 236 ms
20,864 KB
testcase_18 AC 681 ms
41,600 KB
testcase_19 AC 52 ms
12,032 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 795 ms
48,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a = sorted(set(Y))
dp = [[0] * 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):
    t = float('inf')
    for j in range(len(a)):
        t = min(t, dp[i - 1][j])
        dp[i][j] = t + abs(Y[i] - a[j])

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