結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | momoyuu |
提出日時 | 2023-03-24 03:13:51 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 520 bytes |
コンパイル時間 | 2,972 ms |
コンパイル使用メモリ | 249,124 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 15:50:08 |
合計ジャッジ時間 | 5,193 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; int main(){ int n; cin>>n; vector<ll> a(n); for(int i = 0;i<n;i++) cin>>a[i]; vector<ll> dp(1<<n,0); for(int i = 0;i<1<<n;i++){ for(int j = 0;j<n;j++) if(~i>>j&1) { for(int k = j + 1;k<n;k++) if(~i>>k&1) { assert(j!=k); int nxt = i + 1<<j + 1<<k; dp[nxt] = max(dp[nxt],dp[i]+(ll)a[j]^a[k]); } } } cout<<dp[(int)(1<<n)-1]<<endl; }