結果

問題 No.698 ペアでチームを作ろう
ユーザー mine691mine691
提出日時 2020-01-17 18:04:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 1,000 ms
コード長 848 bytes
コンパイル時間 1,755 ms
コンパイル使用メモリ 170,068 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 15:55:06
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int mod = 1e9 + 7;
const int inf = (1 << 30) - 1;
const ll infll = (1LL << 61) - 1;
#define fast() ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define digit(N) cout << fixed << setprecision((N))

int N;

int main()
{
    cin >> N;
    vector<int> dp(1 << N), a(N);

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

    for (int bit = 0; bit < (1 << N); bit++)
    {
        for (int i = 0; i < N; i++)
        {
            for (int j = i + 1; j < N; j++)
            {
                if (!(bit & (1 << i)) && !(bit & (1 << j)))
                {
                    dp[bit + (1 << i) + (1 << j)] = max(dp[bit + (1 << i) + (1 << j)], dp[bit] + (a[i] ^ a[j]));
                }
            }
        }
    }
    cout << dp[(1 << N) - 1] << "\n";
}
0