結果

問題 No.1077 Noelちゃんと星々4
ユーザー uni_pythonuni_python
提出日時 2020-06-15 23:49:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 154,836 KB
最終ジャッジ日時 2024-07-03 11:40:00
合計ジャッジ時間 4,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,628 KB
testcase_01 AC 42 ms
62,332 KB
testcase_02 AC 227 ms
129,924 KB
testcase_03 AC 269 ms
145,728 KB
testcase_04 AC 114 ms
96,824 KB
testcase_05 AC 102 ms
90,632 KB
testcase_06 AC 138 ms
103,196 KB
testcase_07 AC 152 ms
107,376 KB
testcase_08 AC 126 ms
98,680 KB
testcase_09 AC 117 ms
95,684 KB
testcase_10 AC 269 ms
145,932 KB
testcase_11 AC 192 ms
121,280 KB
testcase_12 AC 176 ms
112,960 KB
testcase_13 AC 93 ms
89,728 KB
testcase_14 AC 256 ms
144,132 KB
testcase_15 AC 162 ms
111,624 KB
testcase_16 AC 125 ms
99,392 KB
testcase_17 AC 177 ms
116,856 KB
testcase_18 AC 266 ms
147,144 KB
testcase_19 AC 95 ms
89,152 KB
testcase_20 AC 42 ms
60,640 KB
testcase_21 AC 287 ms
154,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    N=I()
    Y=LI()
    inf=10**10
    M=10**4
    dp=[[inf]*(M+1)for _ in range(N+1)]
    #dp[i][j]はi個まで見て,最後の高さがjの時の時の最小値
    #dp[i][j]はdp[i-1][0~j]のmin+cost
    dp[0][0]=0
    

    
    for i in range(N):
        Min=[inf]*(M+1)
        Min[0]=dp[i][0]
        for j in range(M):
            Min[j+1]=min(Min[j],dp[i][j+1])
        
        for j in range(M):
            dp[i+1][j]=Min[j]+abs(Y[i]-j)
            
    ans=inf
    for j in range(M+1):
        ans=min(ans,dp[-1][j])
    print(ans)
    

            
            
    


main()
0