結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | 👑 CleyL |
提出日時 | 2022-05-05 23:43:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 698 bytes |
コンパイル時間 | 671 ms |
コンパイル使用メモリ | 77,468 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 01:17:45 |
合計ジャッジ時間 | 1,773 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 8 ms
5,376 KB |
testcase_05 | AC | 31 ms
5,376 KB |
testcase_06 | AC | 31 ms
5,376 KB |
testcase_07 | AC | 31 ms
5,376 KB |
testcase_08 | AC | 31 ms
5,376 KB |
testcase_09 | AC | 31 ms
5,376 KB |
testcase_10 | AC | 31 ms
5,376 KB |
testcase_11 | AC | 31 ms
5,376 KB |
testcase_12 | AC | 31 ms
5,376 KB |
testcase_13 | AC | 31 ms
5,376 KB |
testcase_14 | AC | 31 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int dp[10][(1<<14)+20]; int main(){ int n;cin>>n; vector<int> A(n); for(int i = 0; n > i; i++){ cin>>A[i]; } for(int i = 0; n/2 > i; i++){ for(int j = 0; (1<<n) > j; j++){ for(int k = 0; n > k; k++){ for(int l = k+1; n > l; l++){ if(!(j & (1<<k)) && !(j & (1<<l))){ dp[i+1][j+(1<<k)+(1<<l)] = max(dp[i+1][j+(1<<k)+(1<<l)],dp[i][j] + (A[k]^A[l])); } } } } } // for(int i = 0; n/2 >= i; i++){ // for(int j = 0; (1<<n) > j; j++){ // cout << dp[i][j] << " \n"[j+1 == (1<<n)]; // } // } cout << dp[n/2][(1<<n)-1] << endl; }