結果

問題 No.1077 Noelちゃんと星々4
ユーザー c-yanc-yan
提出日時 2020-06-14 09:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,128 KB
最終ジャッジ日時 2024-06-27 00:20:37
合計ジャッジ時間 2,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 66 ms
73,216 KB
testcase_03 AC 81 ms
81,664 KB
testcase_04 AC 53 ms
64,640 KB
testcase_05 AC 51 ms
63,104 KB
testcase_06 AC 55 ms
66,304 KB
testcase_07 AC 56 ms
67,200 KB
testcase_08 AC 54 ms
65,152 KB
testcase_09 AC 57 ms
65,024 KB
testcase_10 AC 80 ms
81,792 KB
testcase_11 AC 63 ms
70,272 KB
testcase_12 AC 58 ms
68,352 KB
testcase_13 AC 50 ms
63,152 KB
testcase_14 AC 77 ms
81,536 KB
testcase_15 AC 59 ms
68,096 KB
testcase_16 AC 58 ms
65,152 KB
testcase_17 AC 60 ms
69,120 KB
testcase_18 AC 76 ms
82,048 KB
testcase_19 AC 52 ms
62,848 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 82 ms
83,128 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