結果

問題 No.2889 Rusk
ユーザー n0ma_run0ma_ru
提出日時 2024-09-13 23:04:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 2,869 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 211,596 KB
実行使用メモリ 26,820 KB
最終ジャッジ日時 2024-09-13 23:04:24
合計ジャッジ時間 9,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 43 ms
6,952 KB
testcase_16 AC 106 ms
12,980 KB
testcase_17 AC 31 ms
6,944 KB
testcase_18 AC 91 ms
11,408 KB
testcase_19 AC 173 ms
19,208 KB
testcase_20 AC 214 ms
22,816 KB
testcase_21 AC 174 ms
19,284 KB
testcase_22 AC 177 ms
16,856 KB
testcase_23 AC 118 ms
13,948 KB
testcase_24 AC 211 ms
22,580 KB
testcase_25 AC 115 ms
13,704 KB
testcase_26 AC 170 ms
18,740 KB
testcase_27 AC 221 ms
23,304 KB
testcase_28 AC 130 ms
14,972 KB
testcase_29 AC 160 ms
15,516 KB
testcase_30 AC 133 ms
15,324 KB
testcase_31 AC 217 ms
23,160 KB
testcase_32 AC 94 ms
11,844 KB
testcase_33 AC 27 ms
6,944 KB
testcase_34 AC 256 ms
26,692 KB
testcase_35 AC 254 ms
26,752 KB
testcase_36 AC 279 ms
26,688 KB
testcase_37 AC 254 ms
26,692 KB
testcase_38 AC 252 ms
26,820 KB
testcase_39 AC 99 ms
24,500 KB
testcase_40 AC 80 ms
19,736 KB
testcase_41 AC 104 ms
25,624 KB
testcase_42 AC 72 ms
18,504 KB
testcase_43 AC 35 ms
10,332 KB
testcase_44 AC 120 ms
23,164 KB
testcase_45 AC 71 ms
18,268 KB
testcase_46 AC 21 ms
7,344 KB
testcase_47 AC 37 ms
11,024 KB
testcase_48 AC 84 ms
21,168 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 272 ms
26,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
int N;
vector<vector<ll>> A(3), S(3);

ll naive() {
    vector<int> cnt(N);
    ll ans = 0, now = 0;
    for (int l = 0; l < N; ++l) {
        for (int r = l; r <= N; ++r) {
            for (int L = l; L < N; ++L) {
                for (int R = L; R <= N; ++R) {
                    vector<int> cnt(N+1);
                    cnt[l]++;
                    cnt[r]--;
                    cnt[L]++;
                    cnt[R]--;
                    for (int i = 1; i <= N; ++i) cnt[i] += cnt[i-1];
                    ll sum = 0;
                    for (int i = 0; i < N; ++i) sum += A[cnt[i]][i];
                    ans = max(ans, sum);
                }
            }
        }
    }
    return ans;
}

int main() {
    cin >> N;
    for (int i = 0; i < 3; ++i) {
        A[i].resize(N);
        S[i].resize(N+1);
        for (int j = 0; j < N; ++j) {
            cin >> A[i][j];
            S[i][j+1] = S[i][j] + A[i][j];
        }
    }
    vector dp(3, vector<ll>(N+1)), dp2(2, vector<ll>(N+1));
    dp[0] = S[0];
    for (int i = 1; i < 3; ++i) {
        for (int j = 0; j < N; ++j) {
            dp[i][j+1] = max(dp[i][j] + A[i][j], dp[i-1][j] + A[i][j]);
            if (i-2 >= 0) dp[i][j+1] = max(dp[i][j+1], dp[i-2][j] + A[i][j]);
        }
    }
    // for (int i = 0; i < 3; ++i) {
    //     for (int j = 0; j <= N; ++j) {
    //         cerr << dp[i][j] << " \n"[j==N];
    //     }
    // }
    // dp2
    for (int i = N-1; i >= 0; --i) {
        dp2[0][i] = dp2[0][i+1] + A[0][i];
    }
    for (int j = N-1; j >= 0; --j) {
        dp2[1][j] = max(dp2[1][j+1] + A[1][j], dp2[0][j+1] + A[1][j]);
    }
    // dp3
    auto dp3 = dp;
    for (int j = 0; j < N; ++j) {
        dp3[2][j+1] = max(dp3[2][j] + A[0][j], dp3[1][j] + A[0][j]);
    }

    ll ans = 0;
    {   // 0
        // 1
        // 1 0
        // 0 1
        // 0 1 0
        for (int i = 0; i <= N; ++i) {
            ans = max(ans, dp[1][i] + S[0][N] - S[0][i]);
        }
    }
    {   // 0 1 0 1 0
        // 0 1 0 1
        // 1 0 1
        for (int i = 0; i <= N; ++i) {
            ans = max(ans, dp3[2][i] + dp2[1][i]);
        }
    }
    {   // 0 2 0
        // 0 1 2 0
        for (int i = 0; i <= N; ++i) {
            ans = max(ans, dp[2][i] + S[0][N] - S[0][i]);
        }
    }
    {// 0 1 2 1 0
        for (int i = 0; i <= N; ++i) {
            ans = max(ans, dp[2][i] + dp2[1][i]);
        }
    }
    cout << ans << '\n';
}
0