結果

問題 No.1077 Noelちゃんと星々4
ユーザー titiatitia
提出日時 2020-06-12 22:42:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,790 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-24 05:27:31
合計ジャッジ時間 12,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

H=sorted(set(Y))
DICT={H[i]:i for i in range(len(H))}
DP=[0]*len(H)

for i in range(N):
    #print(DP)
    y=Y[i]
    #print(y)
    NDP=[1<<30]*len(H)
    for j in range(len(H)):
        if y>=H[j]:
            NDP[j]=min(NDP[j],DP[j]+y-H[j])
    for j in range(len(H)):
        if H[j]<y:
            NDP[j]=min(NDP[j],DP[j]+y-H[j])
            NDP[DICT[y]]=min(NDP[DICT[y]],DP[j])
        else:
            NDP[j]=min(NDP[j],DP[j]+H[j]-y)

    DP=NDP

    for i in range(1,len(H)):
        DP[i]=min(DP[i],DP[i-1])

#print(DP)
print(min(DP))
            
            
0