結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | ahe100 |
提出日時 | 2018-06-18 18:32:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,019 bytes |
コンパイル時間 | 656 ms |
コンパイル使用メモリ | 79,108 KB |
実行使用メモリ | 814,668 KB |
最終ジャッジ日時 | 2024-06-30 16:59:13 |
合計ジャッジ時間 | 3,732 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 634 ms
127,308 KB |
testcase_05 | MLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#include<cstdio> #include<cstring> #include<vector> #include<queue> #include<stack> #include<algorithm> #include<cmath> #include<climits> #include<string> #include<set> #include<numeric> #include<map> #include<iostream> using namespace std; #define rep(i,n) for(int i = 0;i<((int)(n));i++) #define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++) #define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--) #define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--) typedef long long ll; typedef pair<ll, ll> mp; ll mod = 1e9+7; ll inf = 1e18; //WA ll n,a[100],ans=0; ll f(ll N){ return ans; } int main(void){ cin>>n; rep(i,n)cin>>a[i]; queue<mp> Q; Q.push(make_pair((1<<n)-1,0)); while(!Q.empty()){ mp p = Q.front();Q.pop(); if(p.first==0)ans=max(ans,p.second); rep(i,n){ if((p.first>>i & 1)==0)continue; reg(j,i+1,n-1){ if((p.first>>j & 1)==0)continue; ll q=p.first; q = q & ~(1<<i); q = q & ~(1<<j); Q.push(make_pair(q,p.second^(a[i]+a[j]))); } } } cout<<ans<<endl; }