結果

問題 No.2889 Rusk
ユーザー noiminoimi
提出日時 2024-09-13 21:36:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 1,965 bytes
コンパイル時間 2,773 ms
コンパイル使用メモリ 209,012 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-09-13 21:37:03
合計ジャッジ時間 7,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 20 ms
8,448 KB
testcase_16 AC 46 ms
16,896 KB
testcase_17 AC 14 ms
6,784 KB
testcase_18 AC 40 ms
14,592 KB
testcase_19 AC 77 ms
25,300 KB
testcase_20 AC 90 ms
30,592 KB
testcase_21 AC 74 ms
25,472 KB
testcase_22 AC 65 ms
22,144 KB
testcase_23 AC 53 ms
18,176 KB
testcase_24 AC 124 ms
30,320 KB
testcase_25 AC 52 ms
18,048 KB
testcase_26 AC 73 ms
24,832 KB
testcase_27 AC 93 ms
31,220 KB
testcase_28 AC 56 ms
19,584 KB
testcase_29 AC 59 ms
20,352 KB
testcase_30 AC 57 ms
20,116 KB
testcase_31 AC 91 ms
31,104 KB
testcase_32 AC 42 ms
14,976 KB
testcase_33 AC 12 ms
6,400 KB
testcase_34 AC 109 ms
36,052 KB
testcase_35 AC 113 ms
35,968 KB
testcase_36 AC 110 ms
35,968 KB
testcase_37 AC 113 ms
36,096 KB
testcase_38 AC 114 ms
36,096 KB
testcase_39 AC 71 ms
33,024 KB
testcase_40 AC 56 ms
26,240 KB
testcase_41 AC 74 ms
34,304 KB
testcase_42 AC 52 ms
24,576 KB
testcase_43 AC 25 ms
13,056 KB
testcase_44 AC 66 ms
30,976 KB
testcase_45 AC 51 ms
24,448 KB
testcase_46 AC 16 ms
8,960 KB
testcase_47 AC 27 ms
14,080 KB
testcase_48 AC 60 ms
28,288 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 115 ms
35,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define ov4(a, b, c, d, name, ...) name
#define rep3(i, a, b, c) for(ll i = (a); i < (b); i += (c))
#define rep2(i, a, b) rep3(i, a, b, 1)
#define rep1(i, n) rep2(i, 0, n)
#define rep0(n) rep1(aaaaa, n)
#define rep(...) ov4(__VA_ARGS__, rep3, rep2, rep1, rep0)(__VA_ARGS__)
#define per(i, a, b) for(ll i = (a) - 1; i >= (b); i--)
#define fore(e, v) for(auto &&e : v)
#define all(a) begin(a), end(a)
#define si(a) (int)(size(a))
#define lb(v, x) (lower_bound(all(v), x) - begin(v))
#define eb emplace_back

template <typename T, typename S> bool chmin(T &a, const S &b) { return a > b ? a = b, 1 : 0; }
template <typename T, typename S> bool chmax(T &a, const S &b) { return a < b ? a = b, 1 : 0; }

const int INF = 1e9 + 100;
const ll INFL = 3e18 + 100;

#define i128 __int128_t

struct _ {
    _() { cin.tie(0)->sync_with_stdio(0), cout.tie(0); }
} __;

int main() {
    int n;
    cin >> n;
    vl a(n), b(n), c(n);
    fore(e, a) cin >> e;
    fore(e, b) cin >> e;
    fore(e, c) cin >> e;

    ll ma = 0;
    // 0 (1 or 2) 0

    vector<vl> dp(n + 1, vl(5, -INFL));
    vi v{0, 1, 2, 1, 0};
    rep(j, 5) dp[0][j] = 0;
    rep(i, n) {
        ll now = dp[i][0] + a[i];
        chmax(dp[i + 1][0], now);
        rep(j, 1, 5) {
            chmax(now, dp[i][j] + (v[j] == 0 ? a[i] : v[j] == 1 ? b[i] : c[i]));
            chmax(dp[i + 1][j], now);
        }
    }
    chmax(ma, *max_element(all(dp[n])));

    // 0 1 0 1 0
    dp = vector<vl>(n + 1, vl(5, -INFL));
    rep(j, 5) dp[0][j] = 0;
    rep(i, n) {
        chmax(dp[i + 1][0], dp[i][0] + a[i]);
        rep(j, 1, 5) {
            chmax(dp[i + 1][j], dp[i][j - 1] + (j & 1 ? a[i] : b[i]));
            chmax(dp[i + 1][j], dp[i][j] + (~j & 1 ? a[i] : b[i]));
        }
    }
    chmax(ma, *max_element(all(dp[n])));
    cout << ma << endl;
}
0