結果

問題 No.1077 Noelちゃんと星々4
ユーザー hedwig100hedwig100
提出日時 2020-06-12 21:50:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 1,744 ms
コンパイル使用メモリ 172,248 KB
実行使用メモリ 163,712 KB
最終ジャッジ日時 2024-06-24 04:50:53
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 139 ms
113,280 KB
testcase_03 AC 177 ms
145,792 KB
testcase_04 AC 56 ms
46,208 KB
testcase_05 AC 42 ms
35,328 KB
testcase_06 AC 71 ms
59,008 KB
testcase_07 AC 82 ms
67,584 KB
testcase_08 AC 59 ms
49,920 KB
testcase_09 AC 51 ms
43,392 KB
testcase_10 AC 177 ms
145,792 KB
testcase_11 AC 116 ms
95,488 KB
testcase_12 AC 96 ms
79,104 KB
testcase_13 AC 41 ms
33,792 KB
testcase_14 AC 175 ms
142,592 KB
testcase_15 AC 92 ms
76,544 KB
testcase_16 AC 61 ms
51,328 KB
testcase_17 AC 105 ms
86,400 KB
testcase_18 AC 179 ms
148,352 KB
testcase_19 AC 37 ms
32,512 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 198 ms
163,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i ++)
using namespace std;
using ll = long long;
using PL = pair<ll,ll>;
using P = pair<int,int>;
constexpr int INF = 1000000000;
constexpr long long HINF = 1000000000000000;
constexpr long long MOD = 1000000007;
constexpr double EPS = 1e-4;
constexpr double PI = 3.14159265358979;
constexpr int H = 20000;

int main() {
    int N; cin >> N;
    vector<ll> Y(N);
    rep(i,N) cin >> Y[i];
    
    vector<vector<ll>> dp(N + 1,vector<ll>(H,INF));
    rep(i,N) {
        if (i == 0) {
            rep(j,H) {
                if (j == 0) dp[i + 1][j] = abs(j - Y[i]);
                else dp[i + 1][j] = min(dp[i + 1][j - 1],abs(j - Y[i]));
            }
        }
        else {
            rep(j,H) {
                if (j == 0) dp[i + 1][j] = dp[i][j] + abs(j - Y[i]);
                else dp[i + 1][j] = min(dp[i + 1][j - 1],dp[i][j] + abs(j - Y[i]));
            }
        }
    }
    
    ll ans = HINF;
    rep(i,H) {
        ans = min(ans,dp[N][i]);
    }
    cout << ans << endl;
    return 0;
}
0