結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | iUXQY9ovagC7T7W |
提出日時 | 2019-12-05 00:58:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 14 ms / 1,000 ms |
コード長 | 1,062 bytes |
コンパイル時間 | 647 ms |
コンパイル使用メモリ | 63,840 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 13:57:24 |
合計ジャッジ時間 | 1,519 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 14 ms
5,376 KB |
testcase_06 | AC | 13 ms
5,376 KB |
testcase_07 | AC | 13 ms
5,376 KB |
testcase_08 | AC | 13 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,376 KB |
testcase_10 | AC | 13 ms
5,376 KB |
testcase_11 | AC | 13 ms
5,376 KB |
testcase_12 | AC | 14 ms
5,376 KB |
testcase_13 | AC | 13 ms
5,376 KB |
testcase_14 | AC | 14 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> #include<utility> #include<vector> #include<cmath> using namespace std; typedef pair<int, int> P; typedef long long ll; const int INF = 100000000; ll gcd( ll a, ll b ){//最大公約数 ll tmp; if( a < b ) { tmp = a; a = b; b = tmp; } if( b < 1 ) return -1; if( a % b == 0 ) return b; return gcd( b, a % b ); } ll lcm(ll a, ll b){//最小公倍数 return a * b / gcd(a, b); } //入力 int n; int a[20]; int dp[1<<14]; int main(){ cin >> n; for(int i = 0; i < n; i++) cin >> a[i]; for(int before = 0; before < (1 << n); before++){ for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ if(i == j) continue; if(before & (1 << i) || before & (1 << j)) continue; int after = before; after |= (1 << i); after |= (1 << j); dp[after] = max(dp[after], dp[before] + (a[i] ^ a[j])); } } } cout << dp[(1 << n) - 1] << endl; return 0; }