結果

問題 No.699 ペアでチームを作ろう2
ユーザー maimai
提出日時 2018-06-13 19:16:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 487 bytes
コンパイル時間 1,990 ms
コンパイル使用メモリ 199,824 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-30 14:09:21
合計ジャッジ時間 6,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int N, A[19];

int dfs(int flg, int val = 0){
    int i = __builtin_ctz(~flg);
    if (i == N) return val;
    flg |= 1<<i;
    int best = 0;
    
    int j = __builtin_ctz(~flg), b = ~flg;
    while (j < N){
        best = max(best, dfs(flg|(1<<j), val^(A[i]+A[j])));
        j = __builtin_ctz(b |= 1<<j);
    }
    return best;
}

int main(){
    cin >> N;
    for (int i=0; i<N; ++i) cin>>A[i];
    cout << dfs(0) << endl;
    return 0;
}
0