結果

問題 No.2854 -1 Subsequence
ユーザー elpheelphe
提出日時 2024-11-17 17:47:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-17 17:47:20
合計ジャッジ時間 4,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
5,248 KB
testcase_01 AC 19 ms
5,248 KB
testcase_02 AC 20 ms
5,248 KB
testcase_03 AC 11 ms
5,248 KB
testcase_04 AC 21 ms
5,248 KB
testcase_05 AC 14 ms
5,248 KB
testcase_06 AC 8 ms
5,248 KB
testcase_07 AC 20 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 15 ms
5,248 KB
testcase_10 AC 23 ms
5,248 KB
testcase_11 AC 23 ms
5,248 KB
testcase_12 AC 23 ms
5,248 KB
testcase_13 AC 24 ms
5,248 KB
testcase_14 AC 24 ms
5,248 KB
testcase_15 AC 23 ms
5,248 KB
testcase_16 AC 23 ms
5,248 KB
testcase_17 AC 23 ms
5,248 KB
testcase_18 AC 23 ms
5,248 KB
testcase_19 AC 23 ms
5,248 KB
testcase_20 AC 23 ms
5,248 KB
testcase_21 AC 21 ms
5,248 KB
testcase_22 AC 24 ms
5,248 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>
#include <array>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t N, i;
	cin >> N;
	vector<int32_t> A(N);
	for (i = 0; i != N; ++i) cin >> A[i];

	if (N == 1)
	{
		cout << A[0] << '\n';
		return 0;
	}

	array<int64_t, 2> cur = { -A[0] + A[1], max(-A[0], -A[1]) }, prev = { INT64_MIN, INT64_MIN };
	for (i = 2; i != N; ++i)
	{
		prev = cur;

		if (cur[0] < prev[1] + A[i]) cur[0] = prev[1] + A[i];
		if (cur[1] < prev[0] - A[i]) cur[1] = prev[0] - A[i];
		if (cur[1] < -A[i]) cur[1] = -A[i];
	}

	cout << max(cur[0], cur[1]) << '\n';
	return 0;
}
0