結果

問題 No.698 ペアでチームを作ろう
ユーザー takenkotaketakenkotake
提出日時 2024-06-23 21:19:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 1,000 ms
コード長 628 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 245,828 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 21:19:16
合計ジャッジ時間 4,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

const long long inf=1e17;
int A[21];
int dp[1 << 21];

int main(void){
    long long n;
    cin >> n;

    for(long long i=0; i<n; i++){
          cin >> A[i];
    }

    dp[0]=0;
    for(long long msk=0;msk<(1<<n);msk++){
        for(long long a=0;a<n;a++){
            for(long long b=a+1;b<n;b++){
              if(!(msk&(1<<a))){
                if(!(msk&(1<<b))){
                    dp[msk + (1<<a) + (1<<b)] = max(dp[msk + (1<<a) + (1<<b)],dp[msk]+(A[a]^A[b]));
                }
              }
            }
        }
    }
    cout << dp[(1<<n)-1] << endl;
    return 0;
}
0