結果

問題 No.409 ダイエット
ユーザー kimiyukikimiyuki
提出日時 2016-10-20 02:00:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 838 ms / 2,000 ms
コード長 1,046 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 8,952 KB
最終ジャッジ日時 2024-06-26 10:02:58
合計ジャッジ時間 23,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 8 ms
6,940 KB
testcase_36 AC 9 ms
6,940 KB
testcase_37 AC 9 ms
6,940 KB
testcase_38 AC 9 ms
6,940 KB
testcase_39 AC 8 ms
6,944 KB
testcase_40 AC 9 ms
6,940 KB
testcase_41 AC 10 ms
6,940 KB
testcase_42 AC 9 ms
6,944 KB
testcase_43 AC 8 ms
6,940 KB
testcase_44 AC 8 ms
6,944 KB
testcase_45 AC 9 ms
6,940 KB
testcase_46 AC 9 ms
6,944 KB
testcase_47 AC 9 ms
6,944 KB
testcase_48 AC 8 ms
6,944 KB
testcase_49 AC 9 ms
6,940 KB
testcase_50 AC 9 ms
6,940 KB
testcase_51 AC 8 ms
6,940 KB
testcase_52 AC 9 ms
6,940 KB
testcase_53 AC 9 ms
6,944 KB
testcase_54 AC 8 ms
6,940 KB
testcase_55 AC 394 ms
6,940 KB
testcase_56 AC 52 ms
6,940 KB
testcase_57 AC 817 ms
8,952 KB
testcase_58 AC 347 ms
6,944 KB
testcase_59 AC 500 ms
6,940 KB
testcase_60 AC 311 ms
6,940 KB
testcase_61 AC 720 ms
8,244 KB
testcase_62 AC 768 ms
8,556 KB
testcase_63 AC 715 ms
8,100 KB
testcase_64 AC 375 ms
6,944 KB
testcase_65 AC 745 ms
8,392 KB
testcase_66 AC 805 ms
8,736 KB
testcase_67 AC 607 ms
7,444 KB
testcase_68 AC 488 ms
6,944 KB
testcase_69 AC 695 ms
8,076 KB
testcase_70 AC 695 ms
7,768 KB
testcase_71 AC 384 ms
6,944 KB
testcase_72 AC 838 ms
8,736 KB
testcase_73 AC 769 ms
8,268 KB
testcase_74 AC 482 ms
6,940 KB
testcase_75 AC 769 ms
8,396 KB
testcase_76 AC 563 ms
6,956 KB
testcase_77 AC 371 ms
6,940 KB
testcase_78 AC 428 ms
6,944 KB
testcase_79 AC 343 ms
6,948 KB
testcase_80 AC 803 ms
8,424 KB
testcase_81 AC 770 ms
8,256 KB
testcase_82 AC 574 ms
6,972 KB
testcase_83 AC 615 ms
7,292 KB
testcase_84 AC 504 ms
6,944 KB
testcase_85 AC 56 ms
6,940 KB
testcase_86 AC 486 ms
6,940 KB
testcase_87 AC 694 ms
7,772 KB
testcase_88 AC 273 ms
6,940 KB
testcase_89 AC 578 ms
6,984 KB
testcase_90 AC 262 ms
6,944 KB
testcase_91 AC 619 ms
7,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
#define repeat_reverse(i,n) for (int i = (n)-1; (i) >= 0; --(i))
typedef long long ll;
using namespace std;
template <class T> void setmin(T & a, T const & b) { if (b < a) a = b; }
const ll inf = ll(1e18)+9;
int main() {
    // input
    int n, a, b, w; cin >> n >> a >> b >> w;
    vector<int> d(n); repeat (i,n) cin >> d[i];
    if (b == 0) {
        // output
        cout << w - a*(ll)n << endl;
    } else {
        // dp
        n += 1;
        d.push_back(0);
        vector<ll> dp(n+1);
        vector<ll> min_dp(n+1);
        dp[0] = w;
        min_dp[0] = w;
        repeat (i,n) {
            ll acc = inf;
            repeat_reverse (j,i+1) {
                setmin(acc, dp[j] - a *(ll) ll(i-j) + b *(ll) (i-j)*(i-j+1)/2);
                if (i-j > 1000) break;
            }
            dp[i+1] = acc + d[i];
            min_dp[i+1] = min(min_dp[i], dp[i+1]);
        }
        // output
        cout << dp[n] << endl;
    }
    return 0;
}
0