結果

問題 No.2854 -1 Subsequence
ユーザー startcppstartcpp
提出日時 2024-08-25 14:32:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 70,244 KB
実行使用メモリ 8,216 KB
最終ジャッジ日時 2024-08-25 14:32:08
合計ジャッジ時間 3,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
7,652 KB
testcase_01 AC 65 ms
7,628 KB
testcase_02 AC 67 ms
7,536 KB
testcase_03 AC 37 ms
6,940 KB
testcase_04 AC 77 ms
7,892 KB
testcase_05 AC 49 ms
7,464 KB
testcase_06 AC 30 ms
6,940 KB
testcase_07 AC 73 ms
8,012 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 52 ms
7,752 KB
testcase_10 AC 81 ms
8,140 KB
testcase_11 AC 79 ms
8,120 KB
testcase_12 AC 81 ms
8,016 KB
testcase_13 AC 83 ms
8,144 KB
testcase_14 AC 83 ms
8,144 KB
testcase_15 AC 83 ms
8,216 KB
testcase_16 AC 87 ms
8,204 KB
testcase_17 AC 85 ms
8,140 KB
testcase_18 AC 84 ms
8,124 KB
testcase_19 AC 84 ms
8,124 KB
testcase_20 AC 88 ms
8,136 KB
testcase_21 AC 79 ms
8,108 KB
testcase_22 AC 92 ms
8,216 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
6,940 KB
testcase_31 WA -
testcase_32 AC 2 ms
6,940 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 WA -
testcase_38 AC 2 ms
6,944 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;

void chmax(int &a, int b) { a = max(a, b); }

int INF = 1e+15;
int n;
int a[200000];
int dp[200001][2];

signed main() {
	int i, j;

	cin >> n;
	rep(i, n) cin >> a[i];
	rep(i, n + 1) rep(j, 2) dp[i][j] = -INF;

	dp[0][0] = 0;
	rep(i, n) {
		rep(j, 2) {
			if (dp[i][j] == -INF) continue;
			chmax(dp[i + 1][j], dp[i][j]);
			int mul = (j == 0) ? -1 : 1;
			chmax(dp[i + 1][!j], dp[i][j] + a[i] * mul);
		}
	}

	cout << max(dp[n][0], dp[n][1]) << endl;
	return 0;
}
0