結果

問題 No.2854 -1 Subsequence
ユーザー MMMM
提出日時 2024-08-25 14:13:26
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 1,019 bytes
コンパイル時間 6,281 ms
コンパイル使用メモリ 338,328 KB
実行使用メモリ 15,992 KB
最終ジャッジ日時 2024-08-25 14:13:36
合計ジャッジ時間 9,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
13,440 KB
testcase_01 AC 82 ms
12,928 KB
testcase_02 AC 85 ms
13,300 KB
testcase_03 AC 48 ms
8,576 KB
testcase_04 AC 95 ms
14,448 KB
testcase_05 AC 61 ms
10,368 KB
testcase_06 AC 35 ms
7,296 KB
testcase_07 AC 93 ms
14,080 KB
testcase_08 AC 14 ms
6,944 KB
testcase_09 AC 67 ms
11,008 KB
testcase_10 AC 105 ms
15,832 KB
testcase_11 AC 105 ms
15,908 KB
testcase_12 AC 106 ms
15,676 KB
testcase_13 AC 104 ms
15,852 KB
testcase_14 AC 105 ms
15,992 KB
testcase_15 AC 105 ms
15,712 KB
testcase_16 AC 105 ms
15,900 KB
testcase_17 AC 105 ms
15,676 KB
testcase_18 AC 105 ms
15,716 KB
testcase_19 AC 106 ms
15,872 KB
testcase_20 AC 107 ms
15,740 KB
testcase_21 AC 101 ms
15,696 KB
testcase_22 AC 113 ms
15,812 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 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 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 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,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<int>>;

const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

int main(){
  // input
  int N; cin >> N;
  vector<ll> A(N);
  for(int i = 0; i < N; i++)
    cin >> A[i];

	
  if(N == 1){
  	cout << -A[0] << endl;
  	return 0;
  }
    
  // solve
  const ll INF = 1LL<<61;
  vector<vector<ll>> dp(N+1,vector<ll>(3,-INF));
  dp[0][0] = 0;
  for(int i = 0; i < N; i++){
    if(dp[i][0] > -INF){
      chmax(dp[i+1][0],dp[i][0]);
      chmax(dp[i+1][1],dp[i][0] - A[i]);
    }
    if(dp[i][1] > -INF){
      chmax(dp[i+1][1],dp[i][1]);
      chmax(dp[i+1][2],dp[i][1] + A[i]);
    }
    if(dp[i][2] > -INF){
      chmax(dp[i+1][2],dp[i][2]);
      chmax(dp[i+1][1],dp[i][2] - A[i]);
    }
  }
  
  // output
  cout << max(dp[N][2],dp[N][1]) << endl;
}
0