結果

問題 No.698 ペアでチームを作ろう
ユーザー lapi
提出日時 2019-06-22 19:30:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 8 ms / 1,000 ms
コード長 1,174 bytes
コンパイル時間 1,559 ms
コンパイル使用メモリ 102,184 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 09:44:20
合計ジャッジ時間 2,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

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