結果

問題 No.698 ペアでチームを作ろう
ユーザー miwawawamiwawawa
提出日時 2024-08-13 17:48:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 647 ms
コンパイル使用メモリ 55,552 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-13 17:48:45
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 467 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 461 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <algorithm>
#include <cstdio>
using namespace std;

int main(){
	int n,r=0;
	scanf("%d",&n);
	vector<int> v(n);
	for(int i=0;i<n;i++)scanf("%d",&v[i]);
	sort(v.begin(),v.end());
	do{
		int s=0;
		for(int i=0;i<n-1;i+=2)s+=v[i]^v[i+1];
		r=max(s,r);
		reverse(v.begin()+n/2,v.end());
	}while(next_permutation(v.begin(),v.end()));
	printf("%d\n",r);
}
0