結果

問題 No.698 ペアでチームを作ろう
ユーザー Y17Y17
提出日時 2018-10-06 15:10:36
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 1,000 ms
コード長 570 bytes
コンパイル時間 1,443 ms
コンパイル使用メモリ 157,704 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 13:49:28
合計ジャッジ時間 2,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n, d[20];
long long memo[100000];

long long dfs(int a, int b){
  if(a == n) return 0;
  if(memo[b] != -1) return memo[b];

  long long ret = 0;
  for(int i = 0;i < n-1;i++){
    for(int j = i+1;j < n;j++){
      if((b & (1 << i)) == 0 && (b & (1 << j)) == 0){
        ret = max(ret, dfs(a+2, b | (1 << i) | (1 << j)) + (d[i] ^ d[j]));
      }
    }
  }
  return memo[b] = ret;
}

int main(){
  cin >> n;
  for(int i = 0;i < n;i++) cin >> d[i];
  memset(memo,-1,sizeof(memo));
  cout << dfs(0, 0) << endl;
  return 0;
}
0