結果

問題 No.2854 -1 Subsequence
ユーザー ku_senjanku_senjan
提出日時 2024-08-25 13:53:21
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 3,381 ms
コンパイル使用メモリ 284,144 KB
実行使用メモリ 29,956 KB
最終ジャッジ日時 2024-08-25 13:53:30
合計ジャッジ時間 7,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 93 ms
23,776 KB
testcase_02 WA -
testcase_03 AC 52 ms
14,868 KB
testcase_04 WA -
testcase_05 AC 71 ms
18,244 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 16 ms
6,944 KB
testcase_09 AC 75 ms
19,684 KB
testcase_10 AC 116 ms
29,740 KB
testcase_11 AC 127 ms
29,776 KB
testcase_12 AC 115 ms
29,840 KB
testcase_13 AC 117 ms
29,840 KB
testcase_14 AC 116 ms
29,768 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 126 ms
29,720 KB
testcase_21 WA -
testcase_22 AC 129 ms
29,804 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,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 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 1 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

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

	vector able(N+1, vector<bool>(2, true));
	vector dp(N+1, vector<ll>(2, LLONG_MIN));
	able[1][0] = false;
	dp[1][1] = -A[0];

	for(int i=1; i<N; i++){
		if(able[i][0]){
			dp[i+1][0] = max(dp[i+1][0], dp[i][0]);
			dp[i+1][1] = max(dp[i+1][1], dp[i][0] - A[i]);
		}

		if(able[i][1]){
			dp[i+1][1] = max(dp[i+1][1], dp[i][1]);
			dp[i+1][0] = max(dp[i+1][0], dp[i][1] + A[i]);
		}
	}

	cout << max(dp[N][0], dp[N][1]) << endl;

	return 0;
}
0