結果

問題 No.1077 Noelちゃんと星々4
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-06-13 01:51:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 172,432 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-24 06:17:01
合計ジャッジ時間 2,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 42 ms
30,080 KB
testcase_03 AC 50 ms
38,016 KB
testcase_04 AC 16 ms
13,696 KB
testcase_05 AC 13 ms
11,008 KB
testcase_06 AC 21 ms
16,768 KB
testcase_07 AC 24 ms
18,944 KB
testcase_08 AC 17 ms
14,592 KB
testcase_09 AC 16 ms
13,056 KB
testcase_10 AC 50 ms
38,144 KB
testcase_11 AC 34 ms
25,728 KB
testcase_12 AC 28 ms
21,760 KB
testcase_13 AC 12 ms
10,624 KB
testcase_14 AC 49 ms
37,248 KB
testcase_15 AC 27 ms
21,120 KB
testcase_16 AC 17 ms
14,976 KB
testcase_17 AC 30 ms
23,552 KB
testcase_18 AC 50 ms
38,656 KB
testcase_19 AC 12 ms
10,368 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 56 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;
const int INF = 1e9;
const int high = 1e4+1;

int main()
{
    int n; cin >> n;
    vector<int> a(n);
    for(int i = 0; i < n; i++)cin >> a[i];
    vector<vector<int>> dp(n + 1, vector<int>(high, INF)); //dp[i][j] := a[i]の段差j以下に行くときの最小コスト
    for(int i = 0; i < high; i++)dp[0][i] = 0;
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < high; j++) {
            dp[i + 1][j] = min(dp[i + 1][j], abs(a[i] - j) + dp[i][j]);
            if(j != 0)dp[i + 1][j] = min(dp[i + 1][j - 1], dp[i + 1][j]);
        }
    }
    cout << dp[n][high-1] << endl;
}
0