結果

問題 No.2854 -1 Subsequence
ユーザー tnakao0123tnakao0123
提出日時 2024-08-29 14:14:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 763 ms
コンパイル使用メモリ 45,056 KB
実行使用メモリ 8,736 KB
最終ジャッジ日時 2024-08-29 14:14:09
合計ジャッジ時間 3,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
8,432 KB
testcase_01 AC 27 ms
8,368 KB
testcase_02 AC 27 ms
7,920 KB
testcase_03 AC 16 ms
6,944 KB
testcase_04 AC 31 ms
8,180 KB
testcase_05 AC 21 ms
7,696 KB
testcase_06 AC 13 ms
7,008 KB
testcase_07 AC 32 ms
8,116 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 23 ms
7,792 KB
testcase_10 AC 34 ms
8,636 KB
testcase_11 AC 33 ms
8,736 KB
testcase_12 AC 34 ms
8,540 KB
testcase_13 AC 34 ms
8,736 KB
testcase_14 AC 36 ms
8,592 KB
testcase_15 AC 34 ms
8,584 KB
testcase_16 AC 35 ms
8,648 KB
testcase_17 AC 35 ms
8,420 KB
testcase_18 AC 35 ms
8,516 KB
testcase_19 AC 35 ms
8,664 KB
testcase_20 AC 33 ms
8,596 KB
testcase_21 AC 33 ms
8,548 KB
testcase_22 AC 35 ms
8,736 KB
testcase_23 AC 2 ms
6,940 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,940 KB
testcase_29 AC 3 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,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 1 ms
6,944 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2854.cc:  No.2854 -1 Subsequence - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 200000;
const long long LINF = 1LL << 62;

/* typedef */

using ll = long long;

/* global variables */

int as[MAX_N];
ll dp[MAX_N + 1][3];

/* subroutines */

inline void setmax(ll &a, ll b) { if (a < b) a = b; }

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d", as + i);
  
  for (int i = 0; i <= n; i++) fill(dp[i], dp[i] + 3, -LINF);
  dp[0][2] = 0;

  for (int i = 0; i < n; i++)
    for (int j = 0; j < 3; j++)
      if (dp[i][j] > -LINF) {
	setmax(dp[i + 1][j], dp[i][j]);
	int k = (j & 1);
	setmax(dp[i + 1][k ^ 1], dp[i][j] + as[i] * (2 * k - 1));
      }

  printf("%lld\n", max(dp[n][0], dp[n][1]));
  
  return 0;
}
0