結果

問題 No.2889 Rusk
ユーザー nono00nono00
提出日時 2024-09-13 21:52:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 2,717 bytes
コンパイル時間 3,250 ms
コンパイル使用メモリ 254,140 KB
実行使用メモリ 25,144 KB
最終ジャッジ日時 2024-09-13 21:53:20
合計ジャッジ時間 7,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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 6 ms
5,376 KB
testcase_15 AC 18 ms
6,616 KB
testcase_16 AC 44 ms
12,168 KB
testcase_17 AC 13 ms
5,740 KB
testcase_18 AC 37 ms
10,696 KB
testcase_19 AC 70 ms
17,872 KB
testcase_20 AC 85 ms
21,544 KB
testcase_21 AC 69 ms
18,020 KB
testcase_22 AC 60 ms
16,012 KB
testcase_23 AC 47 ms
13,240 KB
testcase_24 AC 84 ms
21,252 KB
testcase_25 AC 47 ms
13,088 KB
testcase_26 AC 68 ms
17,668 KB
testcase_27 AC 88 ms
22,048 KB
testcase_28 AC 52 ms
14,232 KB
testcase_29 AC 54 ms
14,716 KB
testcase_30 AC 54 ms
14,548 KB
testcase_31 AC 85 ms
21,616 KB
testcase_32 AC 38 ms
11,144 KB
testcase_33 AC 12 ms
5,376 KB
testcase_34 AC 100 ms
25,140 KB
testcase_35 AC 100 ms
24,976 KB
testcase_36 AC 100 ms
25,012 KB
testcase_37 AC 100 ms
25,012 KB
testcase_38 AC 100 ms
25,144 KB
testcase_39 AC 61 ms
23,172 KB
testcase_40 AC 49 ms
18,640 KB
testcase_41 AC 65 ms
24,016 KB
testcase_42 AC 45 ms
17,636 KB
testcase_43 AC 22 ms
9,832 KB
testcase_44 AC 58 ms
21,872 KB
testcase_45 AC 44 ms
17,340 KB
testcase_46 AC 13 ms
7,080 KB
testcase_47 AC 24 ms
10,360 KB
testcase_48 AC 52 ms
20,056 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 105 ms
25,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
template <class T>
using max_heap = priority_queue<T>;
template <class T>
using min_heap = priority_queue<T, vector<T>, greater<T>>;
#define rep(i, l, r) for (ll i = (l); i < (r); i++)
#define rrep(i, r, l) for (ll i = (r); i-- > (l);)
#define all(x) begin(x), end(x)
template <class T>
bool chmin(T& lhs, T rhs) {
    return lhs > rhs ? (lhs = rhs, true) : false;
}
template <class T>
bool chmax(T& lhs, T rhs) {
    return lhs < rhs ? (lhs = rhs, true) : false;
}
struct IOIO {
    IOIO() { cin.tie(0)->sync_with_stdio(0); }
} ioio;
template <class S, class T>
ostream& operator<<(ostream& os, const pair<S, T>& p) {
    os << '(' << p.first << ", " << p.second << ')';
    return os;
}
template <class T>
ostream& operator<<(ostream& os, const vector<T>& vs) {
    os << '{';
    rep(i, 0, (int)vs.size()) os << vs[i] << (i + 1 == (int)vs.size() ? "" : ", ");
    os << '}';
    return os;
}
template <class T>
ostream& operator<<(ostream& os, const set<T>& vs) {
    os << '{';
    for (auto it = vs.begin(); it != vs.end(); it++) {
        if (it != vs.begin()) { os << ", "; }
        os << *it;
    }
    os << '}';
    return os;
}
template <class T, class U>
ostream& operator<<(ostream& os, const map<T, U>& vs) {
    os << '{';
    for (auto it = vs.begin(); it != vs.end(); it++) {
        if (it != vs.begin()) { os << ", "; }
        os << *it;
    }
    os << '}';
    return os;
}
#ifdef DEBUG
void dump_func() { cerr << endl; }
template <class Head, class... Tail>
void dump_func(Head&& head, Tail&&... tail) {
    cerr << head;
    if (sizeof...(Tail) > 0) { cerr << ", "; }
    dump_func(std::move(tail)...);
}
#define dump(...) cerr << "[" + string(#__VA_ARGS__) + "] ", dump_func(__VA_ARGS__)
#else
#define dump(...) static_cast<int>(0)
#endif
int main() {
    int n;
    cin >> n;
    vector a(3, vector<ll>(n));
    rep(i, 0, n) cin >> a[0][i];
    rep(i, 0, n) cin >> a[1][i];
    rep(i, 0, n) cin >> a[2][i];
    constexpr ll inf = 1e18;
    vector dp(n + 1, vector<ll>(6, -inf));
    vector to(6, vector<int>(6, -1));
    to[0][0] = 0;
    to[0][1] = 1;
    to[0][4] = 2;
    to[1][1] = 1;
    to[1][2] = 0;
    to[1][4] = 2;
    to[2][2] = 0;
    to[2][3] = 1;
    to[3][3] = 1;
    to[3][5] = 0;
    to[4][4] = 2;
    to[4][3] = 1;
    to[4][5] = 0;
    to[5][5] = 0;
    dp[0][0] = 0;
    rep(i, 0, n) {
        rep(j, 0, 6) {
            if (dp[i][j] == -inf) continue;
            rep(k, 0, 6) {
                if (to[j][k] != -1) { chmax(dp[i + 1][k], dp[i][j] + a[to[j][k]][i]); }
            }
        }
    }
    cout << *max_element(all(dp[n])) << '\n';
}
0