結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | ngtkana |
提出日時 | 2020-04-03 14:57:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 18 ms / 1,000 ms |
コード長 | 1,121 bytes |
コンパイル時間 | 2,323 ms |
コンパイル使用メモリ | 207,264 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 00:44:31 |
合計ジャッジ時間 | 3,116 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 18 ms
5,376 KB |
testcase_06 | AC | 18 ms
5,376 KB |
testcase_07 | AC | 18 ms
5,376 KB |
testcase_08 | AC | 18 ms
5,376 KB |
testcase_09 | AC | 18 ms
5,376 KB |
testcase_10 | AC | 18 ms
5,376 KB |
testcase_11 | AC | 18 ms
5,376 KB |
testcase_12 | AC | 18 ms
5,376 KB |
testcase_13 | AC | 18 ms
5,376 KB |
testcase_14 | AC | 18 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using lint=long long; using real=long double; void cmx(lint&x,lint y){if(x<y)x=y;} int main(){ std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false); std::cout.setf(std::ios_base::fixed);std::cout.precision(15); lint n;std::cin>>n; std::vector<lint>a(n); for(lint&x:a)std::cin>>x; auto cal=[&a,n](std::vector<std::pair<lint,lint>>const&ind){ return std::accumulate(ind.begin(),ind.end(),0ll, [&a](lint acc,std::pair<lint,lint>const&p){return acc^(a.at(p.first)+a.at(p.second));}); }; lint ans=0; auto dfs=[&,n,ckd=std::vector<lint>(n),ind=std::vector<std::pair<lint,lint>>()] (auto&&f) mutable { lint i=0,j=0; for(;i<n&&std::exchange(ckd.at(i),true);i++); if(i==n){ cmx(ans,cal(ind)); return; } for(;j<n;j++){ if(std::exchange(ckd.at(j),true))continue; ind.emplace_back(i,j); f(f); ind.pop_back(); ckd.at(j)=false; } ckd.at(i)=false; }; dfs(dfs); std::cout<<ans<<'\n'; }