結果

問題 No.2854 -1 Subsequence
ユーザー ryota2357ryota2357
提出日時 2024-08-24 15:12:26
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 130,828 KB
実行使用メモリ 14,984 KB
最終ジャッジ日時 2024-08-24 15:12:31
合計ジャッジ時間 4,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 43 ms
8,320 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 64 ms
10,344 KB
testcase_10 AC 102 ms
14,780 KB
testcase_11 AC 103 ms
14,908 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 96 ms
14,880 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 94 ms
14,784 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 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,944 KB
testcase_36 AC 2 ms
6,948 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;

constexpr ll INF = 1LL << 62;

int main() {
	int n;
	cin >> n;
	vector<int> a(n);
	for (int i = 0; i < n; ++i) cin >> a[i];
	
	assert(1 <= n && n <= 200000);
	for (int i = 0; i < n; ++i) assert(abs(a[i]) <= 1000'000'000);
	
	vector<vector<ll>> dp(n+1, vector<ll>(3, -INF));
	dp[0][0] = 0;
	for (int i = 0; i < n; ++i) {
		dp[i+1][0] = max<ll>(dp[i][0], -(ll)a[i]);
		dp[i+1][1] = max({dp[i][1], dp[i][2] - a[i], dp[i][0] - a[i]});
		dp[i+1][2] = max(dp[i][2], dp[i][1] + a[i]);
	}
	cout << max(dp[n][1], dp[n][2]) << endl;
}
0