Submission #57291243


Source Code Expand

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;

// template {{{
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define mt make_tuple
#define lb lower_bound
#define ub upper_bound
#define f first
#define s second
#define resz resize

#define sz(x) int((x).size())
#define all(x) (x).begin(), (x).end()

#define FOR(i, a, b) for (int i = (a); i < (b); i++)
#define F0R(i, a) for (int i = 0; i < (a); i++)
#define FORd(i, a, b) for (int i = (b)-1; i >= (a); i--)
#define F0Rd(i, a) for (int i = (a)-1; i >= 0; i--)
#define trav(a, x) for (auto& a : x)

#define sort_by(x, y) sort(all(x), [&](const auto& a, const auto& b) { return y; })

using ll = int64_t;
using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vb = vector<bool>;
using vd = vector<double>;
using vs = vector<string>;

using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pdd = pair<double, double>;

using vpii = vector<pii>;
using vvpii = vector<vpii>;
using vpll = vector<pll>;
using vvpll = vector<vpll>;
using vpdd = vector<pdd>;
using vvpdd = vector<vpdd>;

template<typename T> void ckmin(T& a, const T& b) { a = min(a, b); }
template<typename T> void ckmax(T& a, const T& b) { a = max(a, b); }

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());

namespace __algorithm {
    template<typename T> void dedup(vector<T>& v) {
        sort(all(v)); v.erase(unique(all(v)), v.end());
    }
    template<typename T> typename vector<T>::const_iterator find(vector<T>& v, const T& x) {
        auto it = lower_bound(all(v), x); return it != v.end() && *it == x ? it : v.end();
    }
    template<typename T> int index(vector<T>& v, const T& x) {
        auto it = find(v, x); assert(it != v.end() && *it == x); return int(it - v.begin());
    }
    template<typename C, typename T, typename OP> vector<T> prefixes(const C& v, T id, OP op) {
        vector<T> r(sz(v)+1, id); F0R (i, sz(v)) r[i+1] = op(r[i], v[i]); return r;
    }
    template<typename C, typename T, typename OP> vector<T> suffixes(const C& v, T id, OP op) {
        vector<T> r(sz(v)+1, id); F0Rd (i, sz(v)) r[i] = op(v[i], r[i+1]); return r;
    }
}
using namespace __algorithm;

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
struct __monostate {
    friend istream& operator>>(istream& is, const __monostate& ms) { return is; }
    friend ostream& operator<<(ostream& os, const __monostate& ms) { return os; }
    friend __monostate operator+(const __monostate& a, const __monostate& b) { return a; }
} ms;
#pragma GCC diagnostic pop

namespace __input {
    template<class T1, class T2> void re(pair<T1,T2>& p);
    template<class T> void re(vector<T>& a);
    template<class T, size_t SZ> void re(array<T,SZ>& a);
 
    template<class T> void re(T& x) { cin >> x; }
    void re(double& x) { string t; re(t); x = stod(t); }
    template<class Arg, class... Args> void re(Arg& first, Args&... rest) {
        re(first); re(rest...);
    }
 
    template<class T1, class T2> void re(pair<T1,T2>& p) { re(p.f,p.s); }
    template<class T> void re(vector<T>& a) { F0R(i,sz(a)) re(a[i]); }
    template<class T, size_t SZ> void re(array<T,SZ>& a) { F0R(i,SZ) re(a[i]); }
}
using namespace __input;
 
namespace __output {
    template<class T1, class T2> void pr(const pair<T1,T2>& x);
    template<class T, size_t SZ> void pr(const array<T,SZ>& x);
    template<class T> void pr(const vector<T>& x);
    template<class T> void pr(const set<T>& x);
    template<class T1, class T2> void pr(const map<T1,T2>& x);
 
    template<class T> void pr(const T& x) { cout << x; }
    template<class Arg, class... Args> void pr(const Arg& first, const Args&... rest) {
        pr(first); pr(rest...);
    }
 
    template<class T1, class T2> void pr(const pair<T1,T2>& x) {
        pr("{",x.f,", ",x.s,"}");
    }
    template<class T, bool pretty = true> void prContain(const T& x) {
        if (pretty) pr("{");
        bool fst = 1; for (const auto& a: x) pr(!fst?pretty?", ":" ":"",a), fst = 0;
        if (pretty) pr("}");
    }
    template<class T> void pc(const T& x) { prContain<T, false>(x); pr("\n"); }
    template<class T, size_t SZ> void pr(const array<T,SZ>& x) { prContain(x); }
    template<class T> void pr(const vector<T>& x) { prContain(x); }
    template<class T> void pr(const set<T>& x) { prContain(x); }
    template<class T1, class T2> void pr(const map<T1,T2>& x) { prContain(x); }
 
    void ps() { pr("\n"); }
    template<class Arg> void ps(const Arg& first) {
        pr(first); ps();
    }
    template<class Arg, class... Args> void ps(const Arg& first, const Args&... rest) {
        pr(first," "); ps(rest...);
    }
}
using namespace __output;
 
#define TRACE(x) x
#define __pn(x) pr(#x, " = ")
#define pd(...) __pn((__VA_ARGS__)), ps(__VA_ARGS__), cout << flush

// using mint = modint998244353;
// using vmi = vector<mint>;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int N;
    cin >> N;
    vll A(N);
    for (int i=0;i<N;i++) cin >> A[i];

    vvll dp(N+1, vll(2, -1));
    dp[0][1] = 0;
    for (int i=0;i<N;i++) {
        for (int j=0;j<2;j++) {
            if (dp[i][j] == -1) continue;
            ckmax(dp[i+1][j^1], dp[i][j] + (2-j)*A[i]);
            ckmax(dp[i+1][j], dp[i][j]);
        }
    }

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


    return 0;
}

Submission Info

Submission Time
Task D - Bonus EXP
User sajninredoc
Language C++ 20 (gcc 12.2)
Score 400
Code Size 5623 Byte
Status AC
Exec Time 24 ms
Memory 15824 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 2
AC × 49
Set Name Test Cases
Sample example_00.txt, example_01.txt
All example_00.txt, example_01.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, random_23.txt, random_24.txt, random_25.txt, random_26.txt, random_27.txt, random_28.txt, random_29.txt, random_30.txt, random_31.txt, random_32.txt, random_33.txt, random_34.txt, random_35.txt, random_36.txt, random_37.txt, random_38.txt, random_39.txt
Case Name Status Exec Time Memory
example_00.txt AC 1 ms 3520 KiB
example_01.txt AC 2 ms 3472 KiB
hand_00.txt AC 19 ms 15488 KiB
hand_01.txt AC 22 ms 15576 KiB
hand_02.txt AC 1 ms 3556 KiB
hand_03.txt AC 19 ms 15580 KiB
hand_04.txt AC 20 ms 15556 KiB
hand_05.txt AC 21 ms 15472 KiB
hand_06.txt AC 1 ms 3564 KiB
random_00.txt AC 19 ms 15584 KiB
random_01.txt AC 19 ms 15572 KiB
random_02.txt AC 18 ms 15548 KiB
random_03.txt AC 18 ms 15820 KiB
random_04.txt AC 21 ms 15524 KiB
random_05.txt AC 22 ms 15544 KiB
random_06.txt AC 18 ms 15512 KiB
random_07.txt AC 22 ms 15420 KiB
random_08.txt AC 17 ms 15552 KiB
random_09.txt AC 22 ms 15648 KiB
random_10.txt AC 20 ms 15524 KiB
random_11.txt AC 17 ms 15592 KiB
random_12.txt AC 19 ms 15588 KiB
random_13.txt AC 19 ms 15816 KiB
random_14.txt AC 21 ms 15512 KiB
random_15.txt AC 20 ms 15488 KiB
random_16.txt AC 22 ms 15552 KiB
random_17.txt AC 22 ms 15588 KiB
random_18.txt AC 18 ms 15484 KiB
random_19.txt AC 19 ms 15508 KiB
random_20.txt AC 21 ms 15416 KiB
random_21.txt AC 22 ms 15588 KiB
random_22.txt AC 22 ms 15816 KiB
random_23.txt AC 21 ms 15492 KiB
random_24.txt AC 21 ms 15512 KiB
random_25.txt AC 22 ms 15504 KiB
random_26.txt AC 21 ms 15544 KiB
random_27.txt AC 22 ms 15484 KiB
random_28.txt AC 21 ms 15588 KiB
random_29.txt AC 22 ms 15576 KiB
random_30.txt AC 21 ms 15492 KiB
random_31.txt AC 21 ms 15492 KiB
random_32.txt AC 22 ms 15640 KiB
random_33.txt AC 22 ms 15488 KiB
random_34.txt AC 22 ms 15512 KiB
random_35.txt AC 22 ms 15504 KiB
random_36.txt AC 24 ms 15488 KiB
random_37.txt AC 21 ms 15484 KiB
random_38.txt AC 21 ms 15540 KiB
random_39.txt AC 21 ms 15824 KiB