結果

問題 No.2854 -1 Subsequence
ユーザー HIcoderHIcoder
提出日時 2024-08-25 22:13:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 123,480 KB
実行使用メモリ 34,624 KB
最終ジャッジ日時 2024-08-25 22:13:44
合計ジャッジ時間 6,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
28,556 KB
testcase_01 AC 105 ms
27,264 KB
testcase_02 AC 110 ms
28,372 KB
testcase_03 AC 60 ms
16,768 KB
testcase_04 AC 122 ms
31,344 KB
testcase_05 AC 77 ms
20,864 KB
testcase_06 AC 45 ms
13,056 KB
testcase_07 AC 119 ms
30,524 KB
testcase_08 AC 17 ms
6,944 KB
testcase_09 AC 85 ms
22,700 KB
testcase_10 AC 135 ms
34,452 KB
testcase_11 AC 138 ms
34,616 KB
testcase_12 AC 134 ms
34,624 KB
testcase_13 AC 138 ms
34,440 KB
testcase_14 AC 135 ms
34,460 KB
testcase_15 AC 134 ms
34,456 KB
testcase_16 AC 136 ms
34,624 KB
testcase_17 AC 134 ms
34,520 KB
testcase_18 AC 135 ms
34,440 KB
testcase_19 AC 136 ms
34,420 KB
testcase_20 AC 140 ms
34,408 KB
testcase_21 AC 136 ms
34,488 KB
testcase_22 AC 142 ms
34,408 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 3 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
using ll = long long;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;
const int MAXN=100000;


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

    dp[0][0][0]=0;
    for(int i=0;i<N;i++){
        for(int c=0;c<2;c++){
        for(int t=0;t<2;t++){
            //何も追加しない
            dp[i+1][t][c]=max(dp[i+1][t][c],dp[i][t][c]);
        }

        
        //追加する
        {
            //-1*A[i]を追加
            dp[i+1][1][1]=max(dp[i+1][1][1],dp[i][0][c]-A[i]);

        }
        {
            //A[i]を追加
            dp[i+1][0][1]=max(dp[i+1][0][1],dp[i][1][c]+A[i]);
        }
        }
    }

    ll ans=max(dp[N][0][1],dp[N][1][1]);
    cout<<ans<<endl;
}
0