結果

問題 No.1240 Or Sum of Xor Pair
ユーザー leaf_1415leaf_1415
提出日時 2020-09-25 22:59:22
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,818 bytes
コンパイル時間 1,055 ms
コンパイル使用メモリ 83,088 KB
実行使用メモリ 51,728 KB
最終ジャッジ日時 2024-06-28 07:13:34
合計ジャッジ時間 7,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
15,688 KB
testcase_01 AC 9 ms
15,688 KB
testcase_02 AC 13 ms
15,556 KB
testcase_03 AC 23 ms
16,508 KB
testcase_04 AC 24 ms
17,308 KB
testcase_05 AC 28 ms
16,968 KB
testcase_06 AC 21 ms
16,688 KB
testcase_07 AC 23 ms
16,324 KB
testcase_08 AC 24 ms
16,324 KB
testcase_09 AC 22 ms
16,732 KB
testcase_10 AC 57 ms
20,148 KB
testcase_11 AC 46 ms
19,508 KB
testcase_12 AC 105 ms
23,976 KB
testcase_13 AC 115 ms
25,168 KB
testcase_14 AC 72 ms
23,380 KB
testcase_15 AC 429 ms
51,728 KB
testcase_16 AC 350 ms
49,296 KB
testcase_17 AC 258 ms
43,668 KB
testcase_18 AC 323 ms
46,740 KB
testcase_19 AC 250 ms
42,528 KB
testcase_20 AC 416 ms
48,148 KB
testcase_21 AC 453 ms
50,448 KB
testcase_22 AC 387 ms
48,412 KB
testcase_23 AC 222 ms
41,488 KB
testcase_24 AC 366 ms
49,204 KB
testcase_25 AC 104 ms
33,168 KB
testcase_26 AC 408 ms
50,572 KB
testcase_27 AC 10 ms
16,476 KB
testcase_28 AC 10 ms
16,044 KB
testcase_29 WA -
testcase_30 AC 45 ms
24,080 KB
testcase_31 AC 33 ms
22,180 KB
testcase_32 AC 126 ms
43,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define mod 998244353

using namespace std;
typedef pair<llint, llint> P;

llint n, x;
llint a[200005];
vector<llint> vec[1<<18], vec2[1<<18];

llint calc(llint p)
{
	for(int i = 0; i < (1<<18); i++) vec[i].clear(), vec2[i].clear();
	
	llint mask = 0;
	for(int j = p+1; j < 18; j++) mask |= x & (1<<j);
	for(int i = 1; i <= n; i++){
		llint head = (a[i]>>p)<<p, tail = a[i]&((1<<p)-1);
		vec[head].push_back(tail);
		vec2[head^mask].push_back(tail);
	}
	
	llint ret = 0;
	for(int i = 0; i < (1<<18); i++){
		llint x = vec[i].size(), y = vec2[i].size();
		if(vec[i].size() == 0) continue;
		for(int j = p; j < 18; j++){
			if((mask & (1<<j)) || (i & (1<<j))){
				ret += (1<<j)*x*y;
			}
		}
		for(int j = 0; j < p; j++){
			llint cnt = 0, cnt2 = 0;
			for(int k = 0; k < vec[i].size(); k++){
				if(vec[i][k] & (1<<j)) cnt++;
			}
			for(int k = 0; k < vec2[i].size(); k++){
				if(vec2[i][k] & (1<<j)) cnt2++;
			}
			ret += (1<<j) * (x*y-(x-cnt)*(y-cnt2));
		}
		
	}
	return ret;
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> x;
	for(int i = 1; i <= n; i++) cin >> a[i];
	
	llint ans = 0;
	for(int i = 17; i >= 0; i--){
		if(x & (1<<i)) ans += calc(i);
	}
	for(int i = 1; i <= n; i++) ans -= a[i];
	ans /= 2;
	cout << ans << endl;
	
	return 0;
}
0