結果

問題 No.2854 -1 Subsequence
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-25 14:18:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 969 bytes
コンパイル時間 3,124 ms
コンパイル使用メモリ 251,832 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:18:47
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
6,812 KB
testcase_01 AC 69 ms
6,940 KB
testcase_02 AC 64 ms
6,944 KB
testcase_03 AC 38 ms
6,944 KB
testcase_04 AC 74 ms
6,944 KB
testcase_05 AC 50 ms
6,940 KB
testcase_06 AC 31 ms
6,944 KB
testcase_07 AC 79 ms
6,940 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 53 ms
6,944 KB
testcase_10 AC 82 ms
6,944 KB
testcase_11 AC 81 ms
6,944 KB
testcase_12 AC 81 ms
6,940 KB
testcase_13 AC 85 ms
6,940 KB
testcase_14 AC 81 ms
6,944 KB
testcase_15 AC 84 ms
6,940 KB
testcase_16 AC 84 ms
6,944 KB
testcase_17 AC 83 ms
6,940 KB
testcase_18 AC 91 ms
6,940 KB
testcase_19 AC 90 ms
6,940 KB
testcase_20 AC 88 ms
6,940 KB
testcase_21 AC 81 ms
6,944 KB
testcase_22 AC 93 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 2 ms
6,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 WA -
testcase_38 AC 1 ms
6,940 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace std;

typedef long long ll;

template <typename T> vector<T> make_zigzag(vector<T> a) {
    a.erase(unique(a.begin(), a.end()), a.end());
    int n = a.size();
    vector<T> ret;
    ret.push_back(a[0]);
    rep(i, 1, n - 1) {
        if (a[i - 1] > a[i] && a[i] > a[i + 1])
            continue;
        if (a[i - 1] < a[i] && a[i] < a[i + 1])
            continue;
        ret.push_back(a[i]);
    }
    ret.push_back(a[n - 1]);
    return ret;
}

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i, 0, n) cin >> a[i];
    a = make_zigzag(a);
    ll ans = 0;
    ll ans1 = -a[0], ans2 = 0;
    rep(i, 0, a.size()) {
        if (i % 2 == 0) {
            ans1 += a[i];
            ans2 -= a[i];
        } else {
            ans1 -= a[i];
            ans2 += a[i];
        }
        ans = max(ans, max(ans1, ans2));
    }
    cout << ans << endl;
}
0