結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | kenta255 |
提出日時 | 2018-10-11 12:45:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 11 ms / 1,000 ms |
コード長 | 907 bytes |
コンパイル時間 | 1,581 ms |
コンパイル使用メモリ | 161,272 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 17:36:11 |
合計ジャッジ時間 | 2,326 ms |
ジャッジサーバーID (参考情報) |
judge / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 10 ms
5,248 KB |
testcase_06 | AC | 11 ms
5,248 KB |
testcase_07 | AC | 10 ms
5,248 KB |
testcase_08 | AC | 10 ms
5,248 KB |
testcase_09 | AC | 10 ms
5,248 KB |
testcase_10 | AC | 10 ms
5,248 KB |
testcase_11 | AC | 11 ms
5,248 KB |
testcase_12 | AC | 10 ms
5,248 KB |
testcase_13 | AC | 10 ms
5,248 KB |
testcase_14 | AC | 10 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define P pair<ll,ll> #define FOR(I,A,B) for(ll I = (A); I < (B); ++I) #define FORR(I,A,B) for(ll I = ((B)-1); I >= (A); --I) #define SORT(x) (sort(x.begin(),x.end())) // 0 2 2 3 4 5 8 9 #define REV(x) (reverse(x.begin(),x.end())) //reverse ll gcd(ll a,ll b){if(a<b)swap(a,b);if(a%b==0)return b;else return gcd(b,a%b);} ll lcm(ll a,ll b){ll c=gcd(a,b);return ((a/c)*(b/c)*c);}//saisyo kobaisu #define NEXTP(x) next_permutation(x.begin(),x.end()) const ll INF=1e18+7; const ll MOD=1e9+7; int main(){ ios::sync_with_stdio(false); cin.tie(0); ll n; cin >> n; vector<ll> a(n); FOR(i,0,n){ cin >> a[i]; } ll dp[1<<n]; FOR(i,0,1<<n)dp[i]=0; FOR(S,0,1<<n){ FOR(x,0,n){ FOR(y,0,n){ if(!(S&1<<x))if(!(S&1<<y)){ dp[S|1<<x|1<<y] = max(dp[S|1<<x|1<<y],dp[S]+(a[x]^a[y])); } } } } cout << dp[(1<<n)-1] << endl;; }