結果

問題 No.838 Noelちゃんと星々3
ユーザー stngstng
提出日時 2022-07-16 13:09:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 111,216 KB
最終ジャッジ日時 2024-06-28 12:35:21
合計ジャッジ時間 3,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
111,216 KB
testcase_01 AC 197 ms
110,504 KB
testcase_02 AC 197 ms
110,636 KB
testcase_03 AC 197 ms
110,608 KB
testcase_04 AC 198 ms
110,612 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 37 ms
52,364 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
52,628 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 38 ms
52,480 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 39 ms
52,608 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 39 ms
52,352 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 38 ms
51,712 KB
testcase_28 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = [int(i) for i in input().split()]

y.sort()
dp = [[[10**15]*2 for _ in range(3)] for _ in range(n)]

dp[0][1][0] = 0
dp[0][2][0] = y[1]-y[0]

for i in range(1,n):
    dp[i][0][1] = min(dp[i-1][1])+y[i]-y[i-1]
    dp[i][1][0] = min(dp[i-1][1][1],dp[i-1][0][1])
    dp[i][1][1] = min(dp[i-1][2])
    if i != n-1:
        dp[i][2][0] = min(dp[i-1][1][1],dp[i-1][0][1])+y[i+1]-y[i]

print(min(dp[n-1][0][1],dp[n-1][1][1]))
0