結果

問題 No.2854 -1 Subsequence
ユーザー jupiter_68jupiter_68
提出日時 2024-08-25 14:02:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,886 bytes
コンパイル時間 4,019 ms
コンパイル使用メモリ 231,548 KB
実行使用メモリ 15,880 KB
最終ジャッジ日時 2024-08-25 14:03:00
合計ジャッジ時間 6,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
13,360 KB
testcase_01 AC 32 ms
12,892 KB
testcase_02 AC 34 ms
13,256 KB
testcase_03 AC 19 ms
8,704 KB
testcase_04 AC 38 ms
14,476 KB
testcase_05 AC 25 ms
10,240 KB
testcase_06 AC 15 ms
7,168 KB
testcase_07 AC 36 ms
14,084 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 42 ms
15,680 KB
testcase_11 AC 42 ms
15,672 KB
testcase_12 AC 42 ms
15,692 KB
testcase_13 AC 42 ms
15,712 KB
testcase_14 AC 43 ms
15,880 KB
testcase_15 AC 43 ms
15,684 KB
testcase_16 AC 41 ms
15,704 KB
testcase_17 AC 44 ms
15,736 KB
testcase_18 AC 43 ms
15,832 KB
testcase_19 AC 43 ms
15,716 KB
testcase_20 AC 41 ms
15,784 KB
testcase_21 AC 40 ms
15,740 KB
testcase_22 AC 44 ms
15,736 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using P = pair<ll, ll>;
using vi = vector<ll>;
using vd = vector<ld>;
using vP = vector<P>;
using vvi = vector<vector<ll>>;
using vvd = vector<vector<ld>>;
using vvP = vector<vector<P>>;
using vvvi = vector<vector<vector<ll>>>;
using vvvd = vector<vector<vector<ld>>>;
using vvvP = vector<vector<vector<P>>>;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using Mint = modint1000000007;
using vm = vector<mint>;
using vM = vector<Mint>;
using vvm = vector<vector<mint>>;
using vvM = vector<vector<Mint>>;
using vvvm = vector<vector<vector<mint>>>;
using vvvM = vector<vector<vector<Mint>>>;
#endif
#define rrep(i, n) for (ll i = (n)-1; (i) >= 0; --(i))
#define rep(i, n) for (ll i = 0; (i) < (n); ++(i))
#define reps(i, n) for (ll i = 1; (i) <= (n); ++(i))
#define Rep(i,a,b) for(ll i = (a); i <= (b); i++)
#define all(a) (a).begin(),(a).end()
const ll MOD = 998244353;
#define Yes(b) ((b)?"Yes":"No")
#define YES(b) ((b)?"YES":"NO")
#define ft first
#define sd second
bool chmin(ll& a, ll b) { return a > b ? a = b, 1 : 0; }
bool chmax(ll& a, ll b) { return a < b ? a = b, 1 : 0; }
// array s90 = { 0, 1, 0, -1 }, c90 = { 1, 0, -1, 0 };
// array s45 = { 0, 1, 1, 1, 0, -1, -1, -1 }, c45 = { 1, 1, 0, -1, -1, -1, 0, 1 };

signed main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(20);
    ll N; cin >> N;
    vi a(N+1); reps(i, N) cin >> a[i];
    vvi dp(N+1, vi(2, -4e18)); dp[0][0] = 0;
    reps(i, N){
        dp[i][0] = max(dp[i-1][0], dp[i-1][1] + a[i]);
        dp[i][1] = max(dp[i-1][1], dp[i-1][0] - a[i]);
    }
    if(dp[N][0] == 0) dp[N][0] = -4e18;
    cout << max(dp[N][0], dp[N][1]) << endl;
}
0