結果

問題 No.2854 -1 Subsequence
ユーザー manabeaimanabeai
提出日時 2024-08-25 16:57:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,122 bytes
コンパイル時間 4,285 ms
コンパイル使用メモリ 264,996 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-08-25 16:57:39
合計ジャッジ時間 8,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 101 ms
15,112 KB
testcase_02 WA -
testcase_03 AC 56 ms
9,344 KB
testcase_04 WA -
testcase_05 AC 74 ms
10,112 KB
testcase_06 AC 40 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 80 ms
10,240 KB
testcase_10 AC 127 ms
16,252 KB
testcase_11 AC 125 ms
16,048 KB
testcase_12 AC 128 ms
16,208 KB
testcase_13 AC 125 ms
16,224 KB
testcase_14 AC 135 ms
16,140 KB
testcase_15 AC 128 ms
16,256 KB
testcase_16 AC 132 ms
16,112 KB
testcase_17 AC 134 ms
16,208 KB
testcase_18 AC 129 ms
16,116 KB
testcase_19 AC 128 ms
16,072 KB
testcase_20 AC 140 ms
16,220 KB
testcase_21 AC 123 ms
16,220 KB
testcase_22 AC 131 ms
16,204 KB
testcase_23 AC 2 ms
6,940 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,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#ifdef DEBUG
#include "cpp-dump/dump.hpp"
#define dump(...) cpp_dump(__VA_ARGS__)
#else
#define dump(...)
#endif
using namespace std;
using namespace atcoder;
typedef long long ll;
const ll INF = 3 * 1e18;

ll op1 (ll a, ll b) {return max(a,b);}
ll e1() {return -INF;}

void solve() {
    ll n;
    cin >> n;
    vector<ll> A(n);
    for (ll i = 0; i < n; ++i) cin >> A[i];
    vector<ll> ttt(n+2, -INF), tt(n+2, -INF);
    // vector<ll> ans(n);

    segtree<ll, op1, e1> segmin(ttt);
    segtree<ll, op1, e1> segplus(tt);
    segmin.set(0, -A[0]);


    
    // iにマイナスがかかるときとプラスがかかるときを別に計算する
    for (ll i = 1; i < n; ++i) {
        ll t = segmin.prod(0, i+1);
        segplus.set(i, t+A[i]);
        ll tt = segplus.prod(0,i+1);
        if (1 == i) {
            segmin.set(i, -A[i]);
        } else {
            segmin.set(i, tt - A[i]);
        }
    }

    ll ans = max((ll)segmin.all_prod(), (ll)segplus.all_prod());
    assert(ans != -INF);
    cout << ans << endl;
}

int main() {
    solve();
    return 0;
}
0