結果

問題 No.2854 -1 Subsequence
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-25 15:06:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 1,143 bytes
コンパイル時間 2,873 ms
コンパイル使用メモリ 246,824 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-08-25 15:06:46
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
6,812 KB
testcase_01 AC 70 ms
6,940 KB
testcase_02 AC 73 ms
6,944 KB
testcase_03 AC 40 ms
6,944 KB
testcase_04 AC 81 ms
6,940 KB
testcase_05 AC 51 ms
6,940 KB
testcase_06 AC 30 ms
6,940 KB
testcase_07 AC 77 ms
6,944 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 56 ms
6,944 KB
testcase_10 AC 90 ms
7,040 KB
testcase_11 AC 87 ms
7,076 KB
testcase_12 AC 88 ms
7,120 KB
testcase_13 AC 89 ms
7,132 KB
testcase_14 AC 88 ms
7,116 KB
testcase_15 AC 88 ms
7,072 KB
testcase_16 AC 87 ms
7,152 KB
testcase_17 AC 96 ms
7,168 KB
testcase_18 AC 89 ms
7,168 KB
testcase_19 AC 89 ms
7,088 KB
testcase_20 AC 92 ms
7,168 KB
testcase_21 AC 85 ms
7,116 KB
testcase_22 AC 95 ms
7,068 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 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,944 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 2 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,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/specfun.h:45,
                 from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/cmath:1935,
                 from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/x86_64-pc-linux-gnu/bits/stdc++.h:41,
                 from main.cpp:1:
In function 'constexpr const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = long long int]',
    inlined from 'int main()' at main.cpp:37:17:
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/stl_algobase.h:259:15: warning: '*dp[<unknown>][1]' may be used uninitialized [-Wmaybe-uninitialized]
  259 |       if (__a < __b)
      |           ~~~~^~~~~

ソースコード

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]);
    }
    ll ans = max(dp[n][0], dp[n][1]);
    if (ans == 0) {
        ans = -1e15;
        rep(i, 0, n) { ans = max(ans, (ll)-a[i]); }
    }
    cout << ans << endl;
}
0