結果

問題 No.1077 Noelちゃんと星々4
ユーザー karinohitokarinohito
提出日時 2024-10-08 23:45:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 470 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 202,640 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-08 23:45:57
合計ジャッジ時間 5,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 2 ms
5,248 KB
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;


int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    ll N;
    cin>>N;
    vector<ll> DP(N+1,1e18);
    DP[0]=0;
    for(int i=0;i<N;i++){
        ll Y;
        cin>>Y;
        ll M=1e18;
        for(int j=0;j<=10000;j++){
            M=min(M,DP[j]);
            DP[j]=M+abs(j-Y);
        }
    }
    ll an=1e18;
    for(int i=0;i<10001;i++)an=min(an,DP[i]);
    cout<<an<<endl;

}
0