結果

問題 No.2854 -1 Subsequence
ユーザー maeshunmaeshun
提出日時 2024-08-27 04:51:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,158 bytes
コンパイル時間 4,338 ms
コンパイル使用メモリ 262,356 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-08-27 04:51:12
合計ジャッジ時間 8,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 69 ms
8,576 KB
testcase_02 WA -
testcase_03 AC 39 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 51 ms
7,296 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 90 ms
10,240 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 94 ms
10,240 KB
testcase_14 WA -
testcase_15 AC 92 ms
10,240 KB
testcase_16 WA -
testcase_17 AC 94 ms
10,368 KB
testcase_18 WA -
testcase_19 AC 94 ms
10,240 KB
testcase_20 AC 94 ms
10,240 KB
testcase_21 WA -
testcase_22 AC 99 ms
10,368 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 2 ms
6,940 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 WA -
testcase_38 AC 2 ms
6,944 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

ll dp[200005][2][2];

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    // vector<vector<ll>> dp(n+1, vector<ll>(2, -1e18));
    dp[0][0][1] = 0;
    rep(i,n) {
        dp[i+1][1][1] = max(dp[i+1][1][1], dp[i][1][0]+a[i]);
        dp[i+1][1][0] = max(dp[i+1][1][0], dp[i][1][1]-a[i]);
        dp[i+1][1][1] = max(dp[i+1][1][1], dp[i][0][0]+a[i]);
        dp[i+1][1][0] = max(dp[i+1][1][0], dp[i][0][1]-a[i]);
        rep(k,2){
            dp[i+1][k][0] = max(dp[i+1][k][0], dp[i][k][0]);
            dp[i+1][k][1] = max(dp[i+1][k][1], dp[i][k][1]);
        }
    }
    dbg(dp);
    cout << max(dp[n][1][0], dp[n][1][1]) << endl;
    return 0;
}
0