結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 4 ms
4,376 KB
testcase_05 AC 11 ms
4,376 KB
testcase_06 AC 11 ms
4,380 KB
testcase_07 AC 12 ms
4,380 KB
testcase_08 AC 12 ms
4,376 KB
testcase_09 AC 11 ms
4,380 KB
testcase_10 AC 12 ms
4,376 KB
testcase_11 AC 12 ms
4,376 KB
testcase_12 AC 12 ms
4,380 KB
testcase_13 AC 12 ms
4,380 KB
testcase_14 AC 11 ms
4,376 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()
{
	fast();

	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++)
	{
		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