結果

問題 No.1045 直方体大学
ユーザー roarisroaris
提出日時 2020-05-08 16:51:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 213,468 KB
実行使用メモリ 77,172 KB
最終ジャッジ日時 2024-07-03 09:53:51
合計ジャッジ時間 6,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 405 ms
77,164 KB
testcase_09 AC 396 ms
77,036 KB
testcase_10 AC 400 ms
77,168 KB
testcase_11 AC 394 ms
77,164 KB
testcase_12 AC 387 ms
77,172 KB
testcase_13 AC 391 ms
77,036 KB
testcase_14 AC 398 ms
77,148 KB
testcase_15 AC 404 ms
77,172 KB
testcase_16 AC 403 ms
77,164 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 427 ms
77,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
#define int long long
typedef tuple<int, int, int> T;

int N;
int A[18], B[18], C[18];
vector<vector<T>> L;
int dp[1<<18][18][8];

signed main() {
    cin >> N;
    rep(i, N) cin >> A[i] >> B[i] >> C[i];
    rep(i, N) {
        vector<T> v;
        v.pb(make_tuple(A[i], B[i], C[i]));
        v.pb(make_tuple(A[i], C[i], B[i]));
        v.pb(make_tuple(B[i], A[i], C[i]));
        v.pb(make_tuple(B[i], C[i], A[i]));
        v.pb(make_tuple(C[i], A[i], B[i]));
        v.pb(make_tuple(C[i], B[i], A[i]));
        L.pb(v);
    }
    
    rep(i, N) rep(j, 6) dp[1<<i][i][j] = get<2>(L[i][j]);
    rep(S, 1<<N) {
        rep(i, N) {
            if (!((S>>i)&1)) continue;
            rep(j, N) {
                if ((S>>j)&1) continue;
                rep(k, 6) rep(l, 6) {
                    int pa = get<0>(L[i][k]), pb = get<1>(L[i][k]);
                    int a = get<0>(L[j][l]), b = get<1>(L[j][l]), c = get<2>(L[j][l]);
                    if (pa>=a && pb>=b) dp[S|(1<<j)][j][l] = max(dp[S|(1<<j)][j][l], dp[S][i][k]+c);
                }
            }
        }
    }
    
    int ans = 0;
    rep(S, 1<<N) rep(i, N) rep(j, 6) ans = max(ans, dp[S][i][j]);
    cout << ans << endl;
}
0