結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | tetsuzuki1115 |
提出日時 | 2018-06-10 17:21:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 1,000 ms |
コード長 | 1,002 bytes |
コンパイル時間 | 967 ms |
コンパイル使用メモリ | 100,176 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 13:17:27 |
合計ジャッジ時間 | 1,597 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 4 ms
6,940 KB |
testcase_14 | AC | 4 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <math.h> #include <cmath> #include <limits.h> #include <map> #include <unordered_map> #include <set> #include <queue> #include <algorithm> #include <functional> #include <stdio.h> using namespace std; long long MOD = 1000000007; int N; vector<long long> A; vector<long long> X; long long func( int a, long long s ) { if ( X[a] != -1 ) { return X[a]+s; } vector<int> B; for ( int i = 0; i < N; i++ ) { if ( ((1<<i)&a) == 0 ) { B.push_back(i); } } long long best = s; for ( int i = 0; i < B.size(); i++ ) { for ( int j = i+1; j < B.size(); j++ ) { best = max( best, func( a | (1<<B[i]) | (1<<B[j]), s+( A[B[i]]^A[B[j]] ) ) ); } } X[a] = best-s; return best; } int main() { cin >> N; A.resize(N); X.resize(1<<N,-1); for ( int i = 0; i < N; i++ ) { cin >> A[i]; } cout << func( 0,0 ) << endl; return 0; }