結果

問題 No.1077 Noelちゃんと星々4
ユーザー kcz146kcz146
提出日時 2020-06-16 00:54:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 207,284 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-07-03 11:42:39
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 55 ms
56,960 KB
testcase_03 AC 70 ms
72,704 KB
testcase_04 AC 22 ms
24,192 KB
testcase_05 AC 17 ms
18,944 KB
testcase_06 AC 28 ms
30,464 KB
testcase_07 AC 33 ms
34,688 KB
testcase_08 AC 24 ms
26,112 KB
testcase_09 AC 21 ms
22,784 KB
testcase_10 AC 70 ms
72,832 KB
testcase_11 AC 46 ms
48,128 KB
testcase_12 AC 38 ms
40,320 KB
testcase_13 AC 16 ms
18,176 KB
testcase_14 AC 68 ms
71,296 KB
testcase_15 AC 37 ms
39,040 KB
testcase_16 AC 25 ms
26,496 KB
testcase_17 AC 41 ms
43,904 KB
testcase_18 AC 71 ms
74,112 KB
testcase_19 AC 15 ms
17,408 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 80 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long int;
using lc = complex<double>;

int main(void) {
    constexpr ll MOD = 1e9 + 7;
    constexpr double PI = acos(-1);
    cout << fixed << setprecision(32);
    cin.tie(0); ios::sync_with_stdio(false);

    ll n;
    cin >> n;
    vector<vector<ll>> dp(n+1, vector<ll>(1e4+1));
    for(ll i=0; i<n; i++) {
        ll y;
        cin >> y;
        dp[i+1][0] = dp[i][0] + abs(y);
        for(ll j=1; j<=1e4; j++)
            dp[i+1][j] = min(dp[i+1][j-1], dp[i][j] + abs(y-j));
    }
    cout << *min_element(dp[n].begin(), dp[n].end()) << endl;
}
0