結果

問題 No.698 ペアでチームを作ろう
ユーザー 👑 nu50218nu50218
提出日時 2019-09-03 15:28:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 742 bytes
コンパイル時間 1,403 ms
コンパイル使用メモリ 168,552 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-25 18:14:56
合計ジャッジ時間 2,247 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    int N;
    cin >> N;
    int A[N];
    for (int i = 0; i < N; i++) cin >> A[i];
    int DP[(1 << N)] = {};
    for (int bits = 0; bits < (1 << N); bits++) {
        if (__builtin_parity(bits)) continue;
        vector<int> matched;
        for (int i = 0; i < N; i++) {
            if (bits & (1 << i)) {
                matched.push_back(i);
            }
        }
        for (size_t i = 0; i < matched.size(); i++) {
            for (size_t j = i + 1; j < matched.size(); j++) {
                DP[bits] = max(DP[bits], (A[matched[i]] ^ A[matched[j]]) + DP[bits ^ (1 << matched[i]) ^ (1 << matched[j])]);
            }
        }
    }
    cout << DP[(1 << N) - 1] << endl;
}
0