結果

問題 No.2854 -1 Subsequence
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-15 14:32:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 204,940 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-10-15 14:32:58
合計ジャッジ時間 6,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
13,312 KB
testcase_01 AC 31 ms
12,672 KB
testcase_02 AC 31 ms
13,184 KB
testcase_03 AC 18 ms
8,576 KB
testcase_04 AC 36 ms
14,464 KB
testcase_05 AC 23 ms
10,240 KB
testcase_06 AC 16 ms
7,040 KB
testcase_07 AC 36 ms
14,080 KB
testcase_08 AC 7 ms
5,248 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 41 ms
15,616 KB
testcase_11 AC 44 ms
15,744 KB
testcase_12 AC 44 ms
15,744 KB
testcase_13 AC 39 ms
15,616 KB
testcase_14 AC 44 ms
15,616 KB
testcase_15 AC 44 ms
15,744 KB
testcase_16 AC 41 ms
15,744 KB
testcase_17 AC 43 ms
15,616 KB
testcase_18 AC 42 ms
15,616 KB
testcase_19 AC 42 ms
15,744 KB
testcase_20 AC 40 ms
15,616 KB
testcase_21 AC 38 ms
15,616 KB
testcase_22 AC 40 ms
15,616 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N;
    cin >> N;
    vector<ll> A(N+1);
    for (int i=1; i<=N; i++) cin >> A[i];
    vector dp(N+1, vector<ll>(2, -1e18));
    for (int i=1; i<=N; i++){
        dp[i][1] = max({dp[i-1][0]-A[i], -A[i], dp[i-1][1]});
        dp[i][0] = max(dp[i-1][1]+A[i], dp[i-1][0]);
    }

    cout << max(dp[N][1], dp[N][0]) << endl;

    return 0;
}
0