結果

問題 No.1077 Noelちゃんと星々4
ユーザー ayaoniayaoni
提出日時 2021-05-01 16:16:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 1,055 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 253,424 KB
最終ジャッジ日時 2024-07-20 00:22:31
合計ジャッジ時間 6,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,440 KB
testcase_01 AC 52 ms
64,000 KB
testcase_02 AC 334 ms
204,672 KB
testcase_03 AC 405 ms
230,636 KB
testcase_04 AC 166 ms
116,132 KB
testcase_05 AC 148 ms
112,768 KB
testcase_06 AC 197 ms
139,008 KB
testcase_07 AC 213 ms
139,264 KB
testcase_08 AC 180 ms
130,420 KB
testcase_09 AC 159 ms
115,692 KB
testcase_10 AC 409 ms
230,892 KB
testcase_11 AC 291 ms
183,868 KB
testcase_12 AC 247 ms
161,872 KB
testcase_13 AC 144 ms
110,976 KB
testcase_14 AC 398 ms
230,656 KB
testcase_15 AC 247 ms
161,920 KB
testcase_16 AC 184 ms
131,840 KB
testcase_17 AC 259 ms
162,176 KB
testcase_18 AC 421 ms
246,016 KB
testcase_19 AC 137 ms
109,372 KB
testcase_20 AC 50 ms
61,568 KB
testcase_21 AC 450 ms
253,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
Y = [0]+LI()

dp = [[0]*12000 for _ in range(N+1)]
min_dp = [[0]*12000 for _ in range(N+1)]
# dp[i][j] = i番目の要素まで見て、最後の要素がjになるときの距離の総和の最小値
# min_dp[i][j] = i番目の要素まで見て、最後の要素がj以下になるときの距離の総和の最小値
for i in range(1,N+1):
    y = Y[i]
    for j in range(12000):
        dp[i][j] = min_dp[i-1][j]+abs(y-j)
        
    min_dp[i][0] = dp[i][0]
    a = dp[i][0]
    for j in range(1,12000):
        a = min(a,dp[i][j])
        min_dp[i][j] = a

ans = min_dp[-1][-1]
print(ans)
0