結果

問題 No.1077 Noelちゃんと星々4
ユーザー SEELSEEL
提出日時 2020-06-14 19:08:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,408 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 204,936 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-06-27 16:25:15
合計ジャッジ時間 3,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 53 ms
56,960 KB
testcase_03 AC 69 ms
72,704 KB
testcase_04 AC 21 ms
24,192 KB
testcase_05 AC 17 ms
18,816 KB
testcase_06 AC 28 ms
30,464 KB
testcase_07 AC 32 ms
34,816 KB
testcase_08 AC 24 ms
25,984 KB
testcase_09 AC 21 ms
22,656 KB
testcase_10 AC 68 ms
72,704 KB
testcase_11 AC 44 ms
48,384 KB
testcase_12 AC 37 ms
40,320 KB
testcase_13 AC 16 ms
18,176 KB
testcase_14 AC 68 ms
71,296 KB
testcase_15 AC 36 ms
39,040 KB
testcase_16 AC 24 ms
26,496 KB
testcase_17 AC 41 ms
43,904 KB
testcase_18 AC 69 ms
74,112 KB
testcase_19 AC 15 ms
17,280 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 77 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, b) for(int i = a; i < b; i++)
#define Rep(i, a, b) for(int i = a; i <= b; i++)
#define repr(i, a, b) for(int i = a; i >= b; i--)
#define _GLIBCXX_DEBUG
#define Vl vector<ll>
#define Vs vector<string>
#define Vp vector<pair<ll, ll>>
#define ld long double
using ll = long long;
#define ALL(v) (v).begin(),(v).end()
#define endl "\n"
#define chmin(x, y) x = min(x, y)
#define chmax(x, y) x = max(x, y)
#define co(x) cout << x << endl
#define coel cout << endl
#define pb push_back
#define sz(v) ((ll)(v).size())
using namespace std;  
const double pi = acos(-1.0);
const ll MOD = 1e9 + 7;
const ll INF = 1LL << 60;
#define pp pair<ll, pair<ll, ll>> 
#define fi first
#define se second

void print(Vl vec){
    rep(i, 0, sz(vec)){
        if(i) cout << " ";
        cout << vec[i];
    }
    coel;
}

////////////////////////////////////////////////////////

// デバッグを消し忘れるな!!!

const ll mx = 10005;

int main() {
    ll n; cin >> n;
    Vl y(n+1);
    Rep(i, 1, n) cin >> y[i];

    vector<Vl> dp(n+1, Vl(mx, INF));
    rep(i, 0, mx){
        dp[1][i] = llabs(i-y[1]);
    }
    Rep(i, 2, n){
        ll M = INF;
        rep(j, 0, mx){
            chmin(M, dp[i-1][j]);
            chmin(dp[i][j], M + llabs(y[i] - j));
        }
    }
    ll ans = INF;
    rep(i, 0, mx){
        chmin(ans, dp[n][i]);
    }

    co(ans);

    return 0;
}
0