結果

問題 No.1077 Noelちゃんと星々4
ユーザー hanbei_dayohanbei_dayo
提出日時 2020-08-26 12:13:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 89,648 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-11-07 03:09:03
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 60 ms
56,960 KB
testcase_03 AC 77 ms
72,832 KB
testcase_04 AC 24 ms
24,320 KB
testcase_05 AC 19 ms
19,072 KB
testcase_06 AC 31 ms
30,592 KB
testcase_07 AC 36 ms
34,688 KB
testcase_08 AC 27 ms
26,112 KB
testcase_09 AC 23 ms
22,912 KB
testcase_10 AC 76 ms
72,960 KB
testcase_11 AC 51 ms
48,384 KB
testcase_12 AC 42 ms
40,320 KB
testcase_13 AC 19 ms
18,304 KB
testcase_14 AC 76 ms
71,296 KB
testcase_15 AC 41 ms
39,040 KB
testcase_16 AC 27 ms
26,624 KB
testcase_17 AC 45 ms
43,904 KB
testcase_18 AC 79 ms
74,368 KB
testcase_19 AC 18 ms
17,536 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 86 ms
81,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<utility>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<functional>
#include<math.h>
using namespace std;
#define N (1000000000+7)
#define M (998244353)
#define INF 1e16
typedef long long ll;
typedef pair<int,int> P;

const int MH = 10010;

int main(void){
    int n;
    cin>>n;

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

0