結果

問題 No.2854 -1 Subsequence
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-25 14:54:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,026 bytes
コンパイル時間 2,633 ms
コンパイル使用メモリ 246,232 KB
実行使用メモリ 7,176 KB
最終ジャッジ日時 2024-08-25 14:54:48
合計ジャッジ時間 5,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
6,812 KB
testcase_01 AC 67 ms
6,940 KB
testcase_02 AC 68 ms
6,940 KB
testcase_03 AC 37 ms
6,944 KB
testcase_04 AC 75 ms
6,940 KB
testcase_05 AC 50 ms
6,940 KB
testcase_06 AC 27 ms
6,940 KB
testcase_07 AC 72 ms
6,948 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 52 ms
6,940 KB
testcase_10 AC 80 ms
7,116 KB
testcase_11 AC 81 ms
7,104 KB
testcase_12 AC 82 ms
7,096 KB
testcase_13 AC 84 ms
7,080 KB
testcase_14 AC 85 ms
7,156 KB
testcase_15 AC 88 ms
7,060 KB
testcase_16 AC 85 ms
7,156 KB
testcase_17 AC 87 ms
7,176 KB
testcase_18 AC 81 ms
7,088 KB
testcase_19 AC 82 ms
7,168 KB
testcase_20 AC 84 ms
7,064 KB
testcase_21 AC 79 ms
7,112 KB
testcase_22 AC 89 ms
7,092 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 1 ms
6,940 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 WA -
testcase_38 AC 2 ms
6,944 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];
    ll dp[n + 1][2];
    rep(i, 0, n + 1) rep(j, 0, 2) dp[i][j] = -1e15;
    dp[0][0] = 0;
    rep(i, 0, n) {
        dp[i + 1][0] = max(dp[i + 1][0], dp[i][0]);
        dp[i + 1][0] = max(dp[i + 1][0], dp[i][1] + a[i]);
        dp[i + 1][1] = max(dp[i + 1][1], dp[i][1]);
        dp[i + 1][1] = max(dp[i + 1][1], dp[i][0] - a[i]);
    }
    cout << max(dp[n][0], dp[n][1]) << endl;
}
0