結果

問題 No.698 ペアでチームを作ろう
ユーザー lapilapi
提出日時 2019-06-22 19:30:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 1,000 ms
コード長 1,174 bytes
コンパイル時間 3,373 ms
コンパイル使用メモリ 101,552 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-27 03:04:26
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include<iomanip>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60

int Xor(int a, int b) {
	int res = 0;
	int num = 1;
	for (int i = 0; i < 30; i++) {
		if ((a % 2) != (b % 2)) res += num;
		a /= 2;
		b /= 2;
		num *= 2;
	}
	return res;
}

int A[15];
int dp[1 << 14];

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

	/*
	int a, b; cin >> a >> b;
	cout << Xor(a, b) << endl;
	*/

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

	for (int i = 0; i < (1 << N); i++) {
		for (int rem1 = 0; rem1 < N; rem1++) {
			for (int rem2 = rem1 + 1; rem2 < N; rem2++) {
				if (!(1 & (i >> rem2)) && !(1 & (i >> rem1))) { // rem1,rem2が残っているなら
					int d = (1 << rem1) + (1 << rem2);
					dp[i + d] = max(dp[i + d], dp[i] + (A[rem1] ^ A[rem2]));
				}
			}
		}
	}

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

	return 0;
}
0