結果

問題 No.2854 -1 Subsequence
ユーザー ayataka5ayataka5
提出日時 2024-08-25 14:26:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 3,236 ms
コンパイル使用メモリ 254,136 KB
実行使用メモリ 34,528 KB
最終ジャッジ日時 2024-08-25 14:26:39
合計ジャッジ時間 7,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
28,584 KB
testcase_01 AC 104 ms
27,264 KB
testcase_02 AC 109 ms
28,360 KB
testcase_03 AC 60 ms
16,768 KB
testcase_04 AC 121 ms
31,444 KB
testcase_05 AC 78 ms
20,864 KB
testcase_06 AC 44 ms
13,056 KB
testcase_07 AC 119 ms
30,396 KB
testcase_08 AC 17 ms
6,944 KB
testcase_09 AC 86 ms
22,676 KB
testcase_10 AC 137 ms
34,484 KB
testcase_11 AC 135 ms
34,428 KB
testcase_12 AC 135 ms
34,496 KB
testcase_13 AC 136 ms
34,488 KB
testcase_14 AC 135 ms
34,412 KB
testcase_15 AC 134 ms
34,480 KB
testcase_16 AC 135 ms
34,452 KB
testcase_17 AC 142 ms
34,448 KB
testcase_18 AC 135 ms
34,432 KB
testcase_19 AC 134 ms
34,444 KB
testcase_20 AC 137 ms
34,452 KB
testcase_21 AC 131 ms
34,528 KB
testcase_22 AC 140 ms
34,468 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 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,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 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;

const long long INF = (1LL << 60);

int main() {
    int N;
    cin >> N;
    vector A(N, 0LL);
    for(int i = 0; i < N; i++) cin >> A[i];
    vector dp(N+1, vector(2, vector(2, -INF)));
    dp[0][0][0] = 0LL;
    for(int i = 0; i < N; i++) {
        for(int j = 0; j < 2; j++) {
            dp[i+1][j][0] = dp[i][j][0];
            dp[i+1][j][1] = max(dp[i][j][1], dp[i+1][j][1]);
            dp[i+1][1-j][1] = max(dp[i][j][0] + (j ? 1LL : -1LL) * A[i], dp[i+1][1-j][1]);
            dp[i+1][1-j][1] = max(dp[i][j][1] + (j ? 1LL : -1LL) * A[i], dp[i+1][1-j][1]);
        }
    }
    cout << max(dp[N][0][1], dp[N][1][1]) << endl;
    return 0;
}
0