結果

問題 No.2889 Rusk
ユーザー Jeroen Op de BeekJeroen Op de Beek
提出日時 2024-09-13 21:33:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 204,904 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-09-13 21:33:37
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 5 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 33 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 28 ms
5,376 KB
testcase_19 AC 52 ms
5,376 KB
testcase_20 AC 64 ms
5,376 KB
testcase_21 AC 52 ms
5,376 KB
testcase_22 AC 45 ms
5,376 KB
testcase_23 AC 37 ms
5,376 KB
testcase_24 AC 64 ms
5,376 KB
testcase_25 AC 36 ms
5,376 KB
testcase_26 AC 52 ms
5,376 KB
testcase_27 AC 66 ms
5,376 KB
testcase_28 AC 39 ms
5,376 KB
testcase_29 AC 41 ms
5,376 KB
testcase_30 AC 40 ms
5,376 KB
testcase_31 AC 65 ms
5,376 KB
testcase_32 AC 29 ms
5,376 KB
testcase_33 AC 9 ms
5,376 KB
testcase_34 AC 76 ms
5,632 KB
testcase_35 AC 77 ms
5,504 KB
testcase_36 AC 76 ms
5,504 KB
testcase_37 AC 76 ms
5,504 KB
testcase_38 AC 77 ms
5,632 KB
testcase_39 AC 37 ms
5,376 KB
testcase_40 AC 29 ms
5,376 KB
testcase_41 AC 39 ms
5,504 KB
testcase_42 AC 28 ms
5,376 KB
testcase_43 AC 14 ms
5,376 KB
testcase_44 AC 34 ms
5,376 KB
testcase_45 AC 27 ms
5,376 KB
testcase_46 AC 9 ms
5,376 KB
testcase_47 AC 15 ms
5,376 KB
testcase_48 AC 32 ms
5,376 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 81 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define all(x) x.begin(),x.end()
template<typename A, typename B> ostream& operator<<(ostream &os, const pair<A, B> &p) { return os << p.first << " " << p.second; }
template<typename T_container, typename T = typename enable_if<!is_same<T_container, string>::value, typename T_container::value_type>::type> ostream& operator<<(ostream &os, const T_container &v) { string sep; for (const T &x : v) os << sep << x, sep = " "; return os; }
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#define ASSERT(...) 42
#endif
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> pi;
const int oo = 1e9;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    // 010, 01210 01010
    int n; cin >> n;
    vi a[3] = {vi(n),vi(n),vi(n)};
    for(auto& v : a) for(auto& i : v) cin >> i;
    auto solve = [&](vi st) {
        vector<ll> dp(st.size());
        for(int i=0;i<n;++i) {
            for(int i=1;i<dp.size();++i) {
                dp[i]=max(dp[i],dp[i-1]);

            }
            for(int j=0;j<dp.size();++j) {
                dp[j]+=a[st[j]][i];
            }
        }
        return *max_element(all(dp));
    };
    cout << max(solve({0,1,0,1,0}),solve({0,1,2,1,0}));
}
0