結果

問題 No.1077 Noelちゃんと星々4
ユーザー Im_GimletIm_Gimlet
提出日時 2020-09-05 01:16:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 1,687 ms
コンパイル使用メモリ 168,884 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-05-05 04:00:42
合計ジャッジ時間 2,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 29 ms
30,592 KB
testcase_03 AC 36 ms
38,400 KB
testcase_04 AC 11 ms
14,080 KB
testcase_05 AC 8 ms
11,392 KB
testcase_06 AC 14 ms
17,024 KB
testcase_07 AC 16 ms
19,328 KB
testcase_08 AC 12 ms
14,976 KB
testcase_09 AC 10 ms
13,440 KB
testcase_10 AC 35 ms
38,528 KB
testcase_11 AC 24 ms
26,112 KB
testcase_12 AC 23 ms
22,272 KB
testcase_13 AC 10 ms
11,008 KB
testcase_14 AC 38 ms
37,760 KB
testcase_15 AC 19 ms
21,504 KB
testcase_16 AC 14 ms
15,232 KB
testcase_17 AC 22 ms
23,936 KB
testcase_18 AC 36 ms
39,168 KB
testcase_19 AC 8 ms
10,624 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 40 ms
43,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using P = pair<ll, ll>;
const long double PI = acos(-1.0L);
ll GCD(ll a, ll b) { return b?GCD(b, a%b):a; }
ll LCM(ll a, ll b) { return a/GCD(a, b)*b; }

int dp[1010][10100];
const int INF = 1e9;

int main() {
    int n; cin >> n;
    vector<int> yvec(n, 0);
    for(int i = 0; i < n; ++i) cin >> yvec[i];
    for(int i = 0; i <= n; ++i) {
        for(int j = 0; j <= 10000; ++j) {
            dp[i][j] = INF;
        }
    }
    for(int i = 0; i <= 10000; ++i) dp[0][i] = 0;

    for(int i = 0; i < n; ++i) {
        int maxn = INF;
        for(int j = 0; j <= 10000; ++j) {
            chmin(maxn, dp[i][j]);
            chmin(dp[i+1][j], maxn + abs(yvec[i]-j));
        }
    }
    int ans = INF;
    for(int i = 0; i <= 10000; ++i) chmin(ans, dp[n][i]);
    cout << ans << endl;
}
0