結果

問題 No.1240 Or Sum of Xor Pair
ユーザー leaf_1415leaf_1415
提出日時 2020-09-25 23:01:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 1,783 bytes
コンパイル時間 1,246 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 64,016 KB
最終ジャッジ日時 2024-06-28 07:15:46
合計ジャッジ時間 14,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
28,400 KB
testcase_01 AC 60 ms
28,264 KB
testcase_02 AC 145 ms
27,972 KB
testcase_03 AC 255 ms
28,612 KB
testcase_04 AC 250 ms
28,864 KB
testcase_05 AC 309 ms
28,996 KB
testcase_06 AC 218 ms
28,532 KB
testcase_07 AC 261 ms
28,740 KB
testcase_08 AC 262 ms
28,792 KB
testcase_09 AC 235 ms
29,144 KB
testcase_10 AC 308 ms
32,680 KB
testcase_11 AC 270 ms
31,892 KB
testcase_12 AC 348 ms
36,136 KB
testcase_13 AC 408 ms
36,360 KB
testcase_14 AC 316 ms
35,360 KB
testcase_15 AC 669 ms
64,016 KB
testcase_16 AC 548 ms
61,584 KB
testcase_17 AC 476 ms
55,960 KB
testcase_18 AC 543 ms
59,024 KB
testcase_19 AC 477 ms
54,812 KB
testcase_20 AC 648 ms
60,284 KB
testcase_21 AC 627 ms
62,612 KB
testcase_22 AC 646 ms
60,576 KB
testcase_23 AC 395 ms
53,652 KB
testcase_24 AC 615 ms
61,492 KB
testcase_25 AC 248 ms
45,456 KB
testcase_26 AC 633 ms
62,864 KB
testcase_27 AC 122 ms
27,976 KB
testcase_28 AC 122 ms
28,296 KB
testcase_29 AC 68 ms
32,604 KB
testcase_30 AC 225 ms
36,304 KB
testcase_31 AC 156 ms
34,332 KB
testcase_32 AC 291 ms
55,880 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 1e19
#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<<19], vec2[1<<19];

llint calc(llint p)
{
	for(int i = 0; i < (1<<19); i++) vec[i].clear(), vec2[i].clear();
	
	llint mask = 0;
	for(int j = p+1; j < 19; 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<<19); i++){
		llint x = vec[i].size(), y = vec2[i].size();
		for(int j = p; j < 19; 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 = 18; 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