結果

問題 No.2854 -1 Subsequence
ユーザー mitanimitani
提出日時 2024-08-25 13:51:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 1,616 ms
コンパイル使用メモリ 172,616 KB
実行使用メモリ 15,088 KB
最終ジャッジ日時 2024-08-25 13:52:01
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,776 KB
testcase_01 AC 77 ms
12,264 KB
testcase_02 AC 78 ms
12,656 KB
testcase_03 AC 44 ms
8,448 KB
testcase_04 AC 86 ms
13,788 KB
testcase_05 AC 55 ms
9,820 KB
testcase_06 AC 32 ms
6,948 KB
testcase_07 AC 82 ms
13,444 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 63 ms
10,496 KB
testcase_10 AC 97 ms
15,028 KB
testcase_11 AC 98 ms
14,944 KB
testcase_12 AC 98 ms
14,924 KB
testcase_13 AC 97 ms
14,904 KB
testcase_14 AC 97 ms
14,960 KB
testcase_15 AC 95 ms
14,900 KB
testcase_16 AC 97 ms
14,880 KB
testcase_17 AC 96 ms
14,968 KB
testcase_18 AC 99 ms
14,900 KB
testcase_19 AC 99 ms
14,916 KB
testcase_20 AC 107 ms
14,892 KB
testcase_21 AC 96 ms
14,940 KB
testcase_22 AC 102 ms
15,088 KB
testcase_23 AC 2 ms
6,940 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,944 KB
testcase_31 WA -
testcase_32 AC 2 ms
6,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 WA -
testcase_38 AC 1 ms
6,940 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(x) x.begin(), x.end()
#define MOD1 1LL<<61-1
#define MOD2 (1LL<<61)-1
#define MOD3 (1LL<<61-1)
using namespace std;
using ll=long long;
using ld=long double;
using P=pair<ll,ll>;
//#include <atcoder/all>
//using namespace atcoder;
////using mint=static_modint<998244353>;
//using mint=static_modint<1000000007>;
////using mint=modint;
//#pragma GCC target("avx2")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")
int inf=2147483647;
ll INF=9223372036854775807;
const ld PI=acos(-1);

void yn(bool f){
	if(f)cout<<"Yes"<<endl;
	else cout<<"No"<<endl;
	return;
}

int main(){
	int n;cin>>n;
	vector<int> a(n);
	rep(i,n)cin>>a[i];

	vector<vector<ll>> dp(n+1,vector<ll>(2,-1001001001001001001));
	dp[0][0]=0;

	rep(i,n){
		dp[i+1][0]=max(dp[i][0],dp[i][1]+a[i]);
		dp[i+1][1]=max(dp[i][1],dp[i][0]-a[i]);
	}

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