結果

問題 No.698 ペアでチームを作ろう
ユーザー とばりとばり
提出日時 2018-09-06 11:16:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 1,000 ms
コード長 893 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 168,588 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-21 13:46:10
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 11 ms
5,248 KB
testcase_06 AC 11 ms
5,248 KB
testcase_07 AC 12 ms
5,248 KB
testcase_08 AC 10 ms
5,248 KB
testcase_09 AC 10 ms
5,248 KB
testcase_10 AC 11 ms
5,248 KB
testcase_11 AC 11 ms
5,248 KB
testcase_12 AC 11 ms
5,248 KB
testcase_13 AC 11 ms
5,248 KB
testcase_14 AC 11 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using int64 = long long;
using uint64 = unsigned long long;

const int MAX_N = 14;

int64 dp[1 << MAX_N];

int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N;
    cin >> N;

    vector<int64> A(N);
    for (int i = 0; i < N; i++)
    {
        cin >> A[i];
    }

    memset(dp, -1, sizeof(dp));
    dp[0] = 0;
    for (int mask = 0; mask < (1 << N); mask++)
    {
        for (int i = 0; i < N; i++)
        {
            for (int j = 0; j < N; j++)
            {
                if (i == j or (mask >> i) & 1 or (mask >> j) & 1)
                {
                    continue;
                }
                int nextMask = mask | (1 << i) | (1 << j);
                dp[nextMask] = max(dp[nextMask], dp[mask] + (A[i] ^ A[j]));
            }
        }
    }

    cout << dp[(1 << N) - 1] << endl;

    return 0;
}
0