結果

問題 No.2854 -1 Subsequence
ユーザー Iroha_3856Iroha_3856
提出日時 2024-08-25 15:12:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 3,105 ms
コンパイル使用メモリ 252,652 KB
実行使用メモリ 34,580 KB
最終ジャッジ日時 2024-08-25 15:12:55
合計ジャッジ時間 7,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
28,544 KB
testcase_01 AC 105 ms
27,264 KB
testcase_02 AC 107 ms
28,416 KB
testcase_03 AC 56 ms
16,768 KB
testcase_04 AC 119 ms
31,348 KB
testcase_05 AC 74 ms
20,864 KB
testcase_06 AC 42 ms
13,056 KB
testcase_07 AC 116 ms
30,472 KB
testcase_08 AC 18 ms
6,940 KB
testcase_09 AC 87 ms
22,656 KB
testcase_10 AC 135 ms
34,456 KB
testcase_11 AC 130 ms
34,464 KB
testcase_12 AC 132 ms
34,484 KB
testcase_13 AC 130 ms
34,436 KB
testcase_14 AC 138 ms
34,480 KB
testcase_15 AC 131 ms
34,580 KB
testcase_16 AC 132 ms
34,464 KB
testcase_17 AC 131 ms
34,432 KB
testcase_18 AC 133 ms
34,516 KB
testcase_19 AC 130 ms
34,408 KB
testcase_20 AC 131 ms
34,504 KB
testcase_21 AC 127 ms
34,536 KB
testcase_22 AC 136 ms
34,416 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, l, r) for (int i = (int)(l); i<(int)(r); i++)
#define ll long long

template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return 1;} return 0;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return 1;} return 0;}

const int inf = 1e9;
const ll INF = 4e18;

int main() {
    int N; cin >> N;
    vector<ll> A(N);
    rep(i, 0, N) cin >> A[i];
    vector dp(N+1, vector(2, vector<ll>(2, -INF)));
    dp[0][0][0] = 0;
    rep(i, 0, N) {
        rep(f, 0, 2) rep(j, 0, 2) {
            if (j == 0) {
                chmax(dp[i+1][1][1-j], dp[i][f][j] - A[i]);
            }
            else {
                chmax(dp[i+1][1][1-j], dp[i][f][j] + A[i]);
            }
            chmax(dp[i+1][f][j], dp[i][f][j]);
        }
    }
    cout << max(dp[N][1][0], dp[N][1][1]) << endl;
}
0