結果

問題 No.1240 Or Sum of Xor Pair
ユーザー beetbeet
提出日時 2020-09-26 12:10:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 782 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 203,408 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-06-28 22:32:31
合計ジャッジ時間 15,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
85,376 KB
testcase_01 AC 62 ms
85,376 KB
testcase_02 AC 111 ms
85,376 KB
testcase_03 AC 185 ms
85,376 KB
testcase_04 AC 173 ms
85,480 KB
testcase_05 AC 216 ms
85,376 KB
testcase_06 AC 160 ms
85,376 KB
testcase_07 AC 185 ms
85,468 KB
testcase_08 AC 182 ms
85,376 KB
testcase_09 AC 173 ms
85,376 KB
testcase_10 AC 247 ms
85,356 KB
testcase_11 AC 223 ms
85,384 KB
testcase_12 AC 321 ms
85,504 KB
testcase_13 AC 370 ms
85,456 KB
testcase_14 AC 282 ms
85,504 KB
testcase_15 AC 780 ms
86,656 KB
testcase_16 AC 649 ms
86,756 KB
testcase_17 AC 625 ms
86,756 KB
testcase_18 AC 664 ms
86,760 KB
testcase_19 AC 581 ms
86,760 KB
testcase_20 AC 729 ms
86,752 KB
testcase_21 AC 678 ms
86,756 KB
testcase_22 AC 782 ms
86,624 KB
testcase_23 AC 487 ms
86,784 KB
testcase_24 AC 721 ms
86,656 KB
testcase_25 AC 397 ms
86,760 KB
testcase_26 AC 736 ms
86,628 KB
testcase_27 AC 87 ms
85,376 KB
testcase_28 AC 87 ms
85,324 KB
testcase_29 AC 140 ms
86,752 KB
testcase_30 AC 220 ms
85,980 KB
testcase_31 AC 167 ms
85,980 KB
testcase_32 AC 319 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

const ll LOG = 19;
ll all[1<<LOG]={};
ll cnt[LOG][1<<LOG]={};

signed main(){
  ll n,x;
  cin>>n>>x;
  vector<ll> as(n);
  for(ll &a:as) cin>>a;

  ll ans=0;
  for(ll i=0;i<LOG;i++){
    if((~x>>i)&1) continue;
    auto f=[&](ll a){return (a>>i)<<i;};

    memset(all,0,sizeof(all));
    for(ll a:as) all[f(a)]++;

    memset(cnt,0,sizeof(cnt));
    for(ll j=0;j<LOG;j++)
      for(ll a:as)
        cnt[j][f(a)]+=(a>>j)&1;

    ll y=(x>>(i+1))<<(i+1);
    for(ll j=0;j<LOG;j++){
      for(ll a:as){
        if((a>>j)&1) ans+=(all[y^f(a)]-(y==0))*(1<<j);
        else ans+=(cnt[j][y^f(a)]-(y==0 and (a>>j)&1))*(1<<j);
      }
    }
  }

  cout<<ans/2<<endl;
  return 0;
}
0