結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | iqueue02 |
提出日時 | 2020-01-08 20:12:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 192 ms / 1,000 ms |
コード長 | 731 bytes |
コンパイル時間 | 2,112 ms |
コンパイル使用メモリ | 174,712 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 13:03:06 |
合計ジャッジ時間 | 4,041 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 8 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 172 ms
5,376 KB |
testcase_08 | AC | 171 ms
5,376 KB |
testcase_09 | AC | 172 ms
5,376 KB |
testcase_10 | AC | 173 ms
5,376 KB |
testcase_11 | AC | 173 ms
5,376 KB |
testcase_12 | AC | 192 ms
5,376 KB |
testcase_13 | AC | 175 ms
5,376 KB |
testcase_14 | AC | 169 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; int main(){ int n; cin >> n; vector<int> a(n); rep(i,n) cin >> a[i]; int res = 0; for (int bit = 0; bit < (1 << n); bit++) { if (__builtin_popcount(bit) * 2 != n) continue; vector<int> x, y; for (int i = 0; i < n; i++) { if (bit & (1 << i)) x.emplace_back(a[i]); else y.emplace_back(a[i]); } sort(y.begin(), y.end()); do { int tmp = 0; for (int i = 0; i < n/2; i++) tmp ^= x[i] + y[i]; res = max(res, tmp); } while(next_permutation(y.begin(), y.end())); } cout << res << endl; return 0; }