結果

問題 No.1077 Noelちゃんと星々4
ユーザー kappybarkappybar
提出日時 2020-06-12 21:36:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 170,964 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-06-24 04:34:55
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 51 ms
56,960 KB
testcase_03 AC 66 ms
72,832 KB
testcase_04 AC 21 ms
24,320 KB
testcase_05 AC 17 ms
19,072 KB
testcase_06 AC 27 ms
30,464 KB
testcase_07 AC 31 ms
34,688 KB
testcase_08 AC 23 ms
25,984 KB
testcase_09 AC 20 ms
22,784 KB
testcase_10 AC 65 ms
72,832 KB
testcase_11 AC 43 ms
48,384 KB
testcase_12 AC 35 ms
40,320 KB
testcase_13 AC 16 ms
18,304 KB
testcase_14 AC 64 ms
71,424 KB
testcase_15 AC 34 ms
39,040 KB
testcase_16 AC 24 ms
26,624 KB
testcase_17 AC 39 ms
44,032 KB
testcase_18 AC 66 ms
74,112 KB
testcase_19 AC 16 ms
17,536 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 73 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;
const ll MX = 10005;

int main(){
    ll n;
    cin >> n;
    vector<ll> y(n);
    rep(i,n) cin >> y[i];
    vector<vector<ll>> dp(n+1,vector<ll>(MX,0));
    for(ll i=1;i<=n;i++){
        ll mn = INF;
        rep(j,MX){
            mn = min(mn,dp[i-1][j]);
            dp[i][j] = mn + abs(y[i-1] - j);
        }
    }

    ll ans = INF;
    rep(j,MX){
        ans = min(ans,dp[n][j]);
    }
    cout << ans << endl;
    return 0;
}
0