結果

問題 No.698 ペアでチームを作ろう
ユーザー kakeyamaykakeyamay
提出日時 2019-07-02 07:55:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 1,891 ms
コンパイル使用メモリ 202,996 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 06:57:59
合計ジャッジ時間 2,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

int main() {
	
	int N;
	std::cin >> N;
	std::vector<int> A(N);
	for(auto&v:A)std::cin >> v;
	
	std::vector<int> dp(1<<N,0);
	
	for(int x=0;x<(1<<N);++x){
		for(int a=0;a<N;++a){
			for(int b=a+1;b<N;++b){
				if(x&(1<<a))continue;
				if(x&(1<<b))continue;
				int v=x|(1<<a)|(1<<b);
				dp[v]=std::max(dp[v],dp[x]+(A[a]^A[b]));
			}
		}
	}
	std::cout << dp[(1<<N)-1] << std::endl;
}
0