結果

問題 No.698 ペアでチームを作ろう
ユーザー mine691mine691
提出日時 2020-06-10 19:37:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 1,000 ms
コード長 987 bytes
コンパイル時間 1,555 ms
コンパイル使用メモリ 169,488 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-05 18:30:26
合計ジャッジ時間 2,311 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = int_fast64_t;
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(nullptr)
#define digit(N) cout << fixed << setprecision((N))
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

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

	vector<int> dp(1 << N);

	for (int bit = 0; bit < (1 << N); bit++)
	{
		int cnt = 0;

		for (int p = 0; p < N; p++)
		{
			if (bit & (1 << p))
				cnt++;
		}
		if (cnt % 2 == 1)
			continue;

		for (int j = 0; j < N; j++)
		{
			for (int k = 0; k < N; k++)
			{
				if (j == k)
					continue;
				if (bit & (1 << j))
					continue;
				if (bit & (1 << k))
					continue;

				dp[bit | (1 << j) | (1 << k)] = max(dp[bit | (1 << j) | (1 << k)], dp[bit] + (a[j] ^ a[k]));
			}
		}
	}

	cout << dp[(1 << N) - 1] << "\n";
}
0