結果

問題 No.1375 Divide and Update
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-02-05 23:07:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 1,509 ms
コンパイル使用メモリ 173,648 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-07-02 14:25:04
合計ジャッジ時間 7,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 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 305 ms
23,040 KB
testcase_11 AC 277 ms
21,376 KB
testcase_12 AC 157 ms
13,184 KB
testcase_13 AC 126 ms
11,648 KB
testcase_14 AC 340 ms
25,856 KB
testcase_15 AC 336 ms
25,984 KB
testcase_16 AC 342 ms
25,984 KB
testcase_17 AC 357 ms
25,984 KB
testcase_18 AC 346 ms
25,856 KB
testcase_19 AC 377 ms
25,856 KB
testcase_20 AC 312 ms
25,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.02.05 23:07:33
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n,x,y; cin >> n >> x >> y;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    
    constexpr long long LLINF = 1e18 + 1;
    vector<vector<ll>> dpx(n+1,vector<ll>(3)),dpy(n+1,vector<ll>(3));
    dpx[0][1] = -LLINF;
    dpy[n][1] = -LLINF;
    dpx[0][2] = -LLINF;
    dpy[n][2] = -LLINF;
    for (int i = 0; i < n; i++) {
        dpx[i+1][0] = dpx[i][0]+a[i];
        dpx[i+1][1] = max(dpx[i][1]+x,dpx[i][0]+x);
        dpx[i+1][2] = max(dpx[i][1]+a[i],dpx[i][2]+a[i]);
    }
    for (int i = n-1; i >= 0; i--) {
        dpy[i][0] = dpy[i+1][0]+a[i];
        dpy[i][1] = max(dpy[i+1][1]+y,dpy[i+1][0]+y);
        dpy[i][2] = max(dpy[i+1][1]+a[i],dpy[i+1][2]+a[i]);
    }
    
    
    for (int i = 1; i < n-1; i++) {
        cout << max({dpx[i][1],dpx[i][2]}) + a[i] + max({dpy[i+1][1],dpy[i+1][2]}) << endl;
    }
    return 0;
}
0