結果

問題 No.698 ペアでチームを作ろう
ユーザー nu50218nu50218
提出日時 2019-09-03 15:14:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 694 bytes
コンパイル時間 1,444 ms
コンパイル使用メモリ 169,160 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 12:07:24
合計ジャッジ時間 2,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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++) {
        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