結果

問題 No.1077 Noelちゃんと星々4
ユーザー IKyoproIKyopro
提出日時 2020-06-12 21:26:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 205,824 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-24 04:24:40
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 32 ms
30,080 KB
testcase_03 AC 41 ms
38,016 KB
testcase_04 AC 13 ms
13,696 KB
testcase_05 AC 11 ms
11,136 KB
testcase_06 AC 17 ms
16,768 KB
testcase_07 AC 20 ms
18,944 KB
testcase_08 AC 15 ms
14,464 KB
testcase_09 AC 13 ms
13,056 KB
testcase_10 AC 41 ms
38,016 KB
testcase_11 AC 28 ms
25,728 KB
testcase_12 AC 23 ms
21,632 KB
testcase_13 AC 10 ms
10,752 KB
testcase_14 AC 40 ms
37,248 KB
testcase_15 AC 22 ms
20,992 KB
testcase_16 AC 15 ms
14,848 KB
testcase_17 AC 25 ms
23,552 KB
testcase_18 AC 43 ms
38,528 KB
testcase_19 AC 10 ms
10,368 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 48 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template <class T, class U> using Pa = pair<T, U>;
template <class T> using vec = vector<T>;
template <class T> using vvec = vector<vec<T>>;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vec<int> A(N);
    for(auto& x:A) cin >> x;
    int inf = 1e9;
    int M = 1e4;
    vvec<int> dp(N+1,vec<int>(M+1,inf));
    dp[0][0] = 0;
    for(int i=0;i<N;i++){
        int mi = inf;
        for(int j=0;j<=M;j++){
            mi = min(mi,dp[i][j]);
            dp[i+1][j] = min(dp[i+1][j],mi+abs(A[i]-j));
        }
    }
    cout << *min_element(dp[N].begin(),dp[N].end()) << "\n";
}
0