結果

問題 No.1077 Noelちゃんと星々4
ユーザー hs0319boyhs0319boy
提出日時 2020-06-12 23:12:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 172,728 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-24 05:53:51
合計ジャッジ時間 2,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using vin=vector<int>;
using vll=vector<long long>;
using vvin=vector<vector<int>>;
using vvll=vector<vector<long long>>;
using vstr=vector<string>;
using vvstr=vector<vector<string>>;
using vch=vector<char>;
using vvch=vector<vector<char>>;
using vbo=vector<bool>;
using vvbo=vector<vector<bool>>;
using vpii=vector<pair<int,int>>;
using pqsin=priority_queue<int,vector<int>,greater<int>>;
#define mp make_pair
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,s,n) for(int i=(s);i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define decp(n) cout<<fixed<<setprecision((int)n)
const int inf=1e9+7;
const ll INF=1e18;

int main(){
    int n;cin>>n;
    vin y(n);rep(i,n)cin>>y[i];
    vvin dp(n,vin(10001));
    rep(i,10001)dp[0][i]=abs(i-y[0]);
    rep(i,n-1)rep(j,10001){
        dp[i+1][j]=dp[i][j]+abs(j-y[i+1]);
        if(j>0)dp[i+1][j]=min(dp[i+1][j],dp[i+1][j-1]-abs(j-1-y[i+1])+abs(j-y[i+1]));
    }
    int ans=inf;
    rep(i,10001)ans=min(ans,dp[n-1][i]);
    cout<<ans<<endl;
}
0