結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 95 ms
15,064 KB
testcase_02 WA -
testcase_03 AC 57 ms
9,344 KB
testcase_04 WA -
testcase_05 AC 74 ms
9,984 KB
testcase_06 AC 41 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 15 ms
6,940 KB
testcase_09 AC 76 ms
10,368 KB
testcase_10 AC 125 ms
16,068 KB
testcase_11 AC 126 ms
16,112 KB
testcase_12 AC 123 ms
16,048 KB
testcase_13 AC 121 ms
16,092 KB
testcase_14 AC 121 ms
16,180 KB
testcase_15 AC 123 ms
16,128 KB
testcase_16 AC 124 ms
16,112 KB
testcase_17 AC 144 ms
16,072 KB
testcase_18 AC 121 ms
16,152 KB
testcase_19 AC 121 ms
16,048 KB
testcase_20 AC 124 ms
16,072 KB
testcase_21 AC 117 ms
16,128 KB
testcase_22 AC 127 ms
16,044 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 1 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,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 2 ms
6,944 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 = 2 * 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> t(n+2, -INF), tt(n+2, -INF);
    // vector<ll> ans(n);

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

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

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

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