結果

問題 No.2889 Rusk
ユーザー Fu_LFu_L
提出日時 2024-09-26 09:12:53
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,121 bytes
コンパイル時間 4,510 ms
コンパイル使用メモリ 282,596 KB
実行使用メモリ 47,060 KB
最終ジャッジ日時 2024-09-26 09:13:06
合計ジャッジ時間 11,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 27 ms
10,324 KB
testcase_16 AC 66 ms
21,380 KB
testcase_17 AC 20 ms
8,044 KB
testcase_18 AC 55 ms
18,380 KB
testcase_19 AC 109 ms
32,848 KB
testcase_20 AC 129 ms
39,720 KB
testcase_21 AC 105 ms
33,128 KB
testcase_22 AC 90 ms
28,688 KB
testcase_23 AC 70 ms
23,348 KB
testcase_24 AC 126 ms
39,300 KB
testcase_25 AC 70 ms
22,816 KB
testcase_26 AC 103 ms
32,260 KB
testcase_27 AC 132 ms
40,768 KB
testcase_28 AC 78 ms
25,244 KB
testcase_29 AC 81 ms
26,112 KB
testcase_30 AC 82 ms
25,704 KB
testcase_31 AC 130 ms
40,172 KB
testcase_32 AC 57 ms
19,080 KB
testcase_33 AC 18 ms
7,552 KB
testcase_34 AC 156 ms
47,060 KB
testcase_35 AC 153 ms
47,032 KB
testcase_36 AC 154 ms
47,028 KB
testcase_37 AC 154 ms
47,060 KB
testcase_38 AC 153 ms
47,008 KB
testcase_39 AC 102 ms
43,012 KB
testcase_40 AC 79 ms
34,132 KB
testcase_41 AC 103 ms
44,812 KB
testcase_42 AC 73 ms
31,836 KB
testcase_43 AC 35 ms
16,620 KB
testcase_44 AC 94 ms
40,400 KB
testcase_45 AC 73 ms
31,548 KB
testcase_46 AC 22 ms
11,044 KB
testcase_47 AC 38 ms
17,780 KB
testcase_48 AC 85 ms
36,568 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 1 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 169 ms
47,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
#define rep(i, a, b) for(ll i = a; i < b; ++i)
#define rrep(i, a, b) for(ll i = a; i >= b; --i)
constexpr ll inf = 4e18;
struct SetupIO {
    SetupIO() {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout << fixed << setprecision(30);
    }
} setup_io;
int main(void) {
    ll n;
    cin >> n;
    vector<vector<ll>> a(3, vector<ll>(n));
    rep(i, 0, 3) {
        rep(j, 0, n) {
            cin >> a[i][j];
        }
    }
    vector<vector<vector<ll>>> dp(n + 1, vector<vector<ll>>(3, vector<ll>(3, -inf)));
    dp[0][0][0] = 0;
    rep(i, 0, n) {
        rep(j, 0, 3) {
            rep(k, 0, j + 1) {
                rep(j1, 0, j + 1) {
                    rep(k1, 0, min(k, j1) + 1) {
                        dp[i + 1][j][k] = max(dp[i + 1][j][k], dp[i][j1][k1] + a[int(j == 1) + int(k == 1)][i]);
                    }
                }
            }
        }
    }
    ll ans = 0;
    rep(i, 0, 3) {
        rep(j, 0, 3) {
            ans = max(ans, dp[n][i][j]);
        }
    }
    cout << ans << '\n';
}
0