結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2018-06-09 23:48:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 642 bytes |
コンパイル時間 | 1,280 ms |
コンパイル使用メモリ | 161,312 KB |
実行使用メモリ | 13,764 KB |
最終ジャッジ日時 | 2024-06-30 13:05:41 |
合計ジャッジ時間 | 5,057 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,764 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 21 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 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 <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) int dfs(int n, int mask, vector<int>& a, int sum) { if (mask == pow(2, n) - 1) return sum; vector<int> v; rep(i, n) { if ((mask & (1<<i)) == 0) v.push_back(i); } int ret = 0; rep(i, v.size())reps(j, i + 1, v.size()) { ret = max(dfs(n, mask | (1 << v[i]) | (1 << v[j]), a, sum + (a[v[i]] ^ a[v[j]])), ret); } return ret; } int main(int argc, char const *argv[]) { int n; cin >> n; vector<int> a(n); rep(i, n) cin >> a[i]; printf("%d\n", dfs(n, 0, a, 0)); return 0; }