結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | troro_kelp |
提出日時 | 2019-04-10 14:51:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,601 bytes |
コンパイル時間 | 903 ms |
コンパイル使用メモリ | 103,680 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-07-07 05:51:19 |
合計ジャッジ時間 | 3,447 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 26 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <list> #include <algorithm> #include <string> #include <sstream> #include <stack> #include <iomanip> #include <numeric> #include <queue> #include <climits> #include <set> #include <complex> #include <cmath> #include <cstring> #include <map> using namespace std; using ll = long long; #define MOD 1000000007 #define INF 1LL << 59 using ld = long double; int N; int arr[15]; int maxV = 0; vector<pair<int, int>> vp; void dfs(int d, bool used[15], vector<int> v) { if (d == N / 2) { int sum = 0; for (int i = 0; i < (int)v.size(); ++i) { sum = sum ^ v[i]; } maxV = max(maxV, sum); return; } for (int i = 0; i < (int)vp.size(); ++i) { if (!used[vp[i].first] && !used[vp[i].second]) { used[vp[i].first] = true; used[vp[i].second] = true; v.push_back(arr[vp[i].first] + arr[vp[i].second]); dfs(d + 1, used, v); v.pop_back(); used[vp[i].first] = false; used[vp[i].second] = false; } } } int main() { std::ios::sync_with_stdio(false); std::cin.tie(0); //cout << fixed << setprecision(5); cin >> N; for (int i = 0; i < N; ++i) cin >> arr[i]; for (int i = 0; i < N; ++i) { for (int j = i + 1; j < N; ++j) { vp.push_back({i, j}); } } bool used[N]; for (int i = 0; i < N; ++i) used[i] = false; vector<int> v; dfs(0, used, v); cout << maxV << endl; return 0; }