結果

問題 No.1375 Divide and Update
ユーザー RheoTommyRheoTommy
提出日時 2021-02-05 23:28:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,494 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 203,664 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-07-02 14:35:06
合計ジャッジ時間 7,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 314 ms
12,800 KB
testcase_11 AC 283 ms
11,904 KB
testcase_12 AC 156 ms
7,936 KB
testcase_13 AC 130 ms
7,168 KB
testcase_14 AC 349 ms
14,208 KB
testcase_15 AC 350 ms
14,336 KB
testcase_16 AC 356 ms
14,208 KB
testcase_17 AC 357 ms
14,208 KB
testcase_18 AC 361 ms
14,208 KB
testcase_19 AC 364 ms
14,208 KB
testcase_20 AC 305 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (int) n; i++)

using ll = long long;
using namespace std;

const long long INF = 1ll << 60;

void chmax(ll &x, ll y) {
    x = max(x, y);
}

void chmin(ll &x, ll y) {
    x = min(x, y);
}

ll dp[300000][3];

ll dp2[300000][3];

int main() {
    ll n, x, y;
    cin >> n >> x >> y;
    
    vector<ll> a(n);
    rep(i, n) cin >> a[i];
    
    dp[0][1] = -INF;
    dp[0][2] = -INF;
    
    rep(i, n) {
        chmax(dp[i + 1][0], dp[i][0] + a[i]);
        chmax(dp[i + 1][2], dp[i][2] + a[i]);
        chmax(dp[i + 1][1], dp[i][0] + x);
        chmax(dp[i + 1][2], dp[i][0] + x);
        chmax(dp[i + 1][1], dp[i][1] + x);
        chmax(dp[i + 1][2], dp[i][1] + x);
    }
    
//    rep(i, n + 1) {
//        cout << dp[i][0] << " " << dp[i][1] << " " << dp[i][2] << endl;
//    }
    
    reverse(a.begin(), a.end());
    
    dp2[0][1] = -INF;
    dp2[0][2] = -INF;
    
    rep(i, n) {
        chmax(dp2[i + 1][0], dp2[i][0] + a[i]);
        chmax(dp2[i + 1][2], dp2[i][2] + a[i]);
        chmax(dp2[i + 1][1], dp2[i][0] + y);
        chmax(dp2[i + 1][2], dp2[i][0] + y);
        chmax(dp2[i + 1][1], dp2[i][1] + y);
        chmax(dp2[i + 1][2], dp2[i][1] + y);
    }
    
//    rep(i, n + 1) {
//        cout << dp2[i][0] << " " << dp2[i][1] << " " << dp2[i][2] << endl;
//    }
    
    reverse(a.begin(), a.end());
    
    for (ll i = 1; i < n - 1; i++) {
        cout << dp[i][2] + a[i] + dp2[n - i - 1][2] << endl;
    }
}
0