結果

問題 No.1077 Noelちゃんと星々4
ユーザー milanis48663220milanis48663220
提出日時 2020-06-14 01:20:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 83,016 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-26 04:29:24
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 29 ms
30,084 KB
testcase_03 AC 47 ms
37,888 KB
testcase_04 AC 14 ms
13,824 KB
testcase_05 AC 11 ms
11,136 KB
testcase_06 AC 18 ms
16,896 KB
testcase_07 AC 21 ms
19,072 KB
testcase_08 AC 15 ms
14,720 KB
testcase_09 AC 14 ms
13,056 KB
testcase_10 AC 45 ms
38,144 KB
testcase_11 AC 30 ms
25,856 KB
testcase_12 AC 25 ms
21,632 KB
testcase_13 AC 11 ms
10,624 KB
testcase_14 AC 44 ms
37,248 KB
testcase_15 AC 24 ms
21,248 KB
testcase_16 AC 17 ms
14,848 KB
testcase_17 AC 27 ms
23,552 KB
testcase_18 AC 45 ms
38,784 KB
testcase_19 AC 11 ms
10,240 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 50 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

int N;
int Y[1000];
int dp[1001][10001];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N;
    for(int i = 0; i < N; i++) cin >> Y[i];
    for(int i = 0; i < N; i++){
        for(int j = 0; j <= 10000; j++){
            dp[i+1][j] = dp[i][j]+abs(Y[i]-j);
            if(j > 0) dp[i+1][j] = min(dp[i+1][j], dp[i+1][j-1]);
        }
    }
    int ans = 1e9;
    for(int i = 0; i <= 10000; i++) ans = min(ans, dp[N][i]);
    cout << ans << endl;
}
0