結果

問題 No.698 ペアでチームを作ろう
ユーザー amesyuamesyu
提出日時 2019-11-23 14:26:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 14 ms / 1,000 ms
コード長 887 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 84,692 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 06:57:02
合計ジャッジ時間 1,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
#include <complex>
#include <stack>
#include <queue>
#include <unordered_map>
#include <map>
#define INF 100000000
#define rep(i, a) for (int i = 0; i < (a); i++)
using namespace std;
int main() {
    int n;
    cin >> n;
    int dp[1<<n];
    int p[n];
    for(int i=0;i<(1<<n);i++) {
        dp[i] = 0;
    }
    for(int i=0;i<n;i++) {
        cin >> p[i];
    }

    for(int i=0;i<(1<<n);i++) {
        for(int j=0;j<n;j++) {
            for(int k=0;k<n;k++) {
                if(k==j) continue;
                if((i>>k)%2 == 1 || (i>>j)%2 == 1) continue;
                
                int nexti = i | (1<<k) | (1<<j);
                int nextd = dp[i] + (p[j]^p[k]);
                dp[nexti] = max(dp[nexti], nextd);
            }
        }
    }
    cout << dp[(1<<n)-1] << endl;
}
0