結果

問題 No.1240 Or Sum of Xor Pair
ユーザー beetbeet
提出日時 2020-09-25 22:49:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 628 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 203,268 KB
実行使用メモリ 43,776 KB
最終ジャッジ日時 2024-06-28 07:09:00
合計ジャッジ時間 11,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
42,332 KB
testcase_01 AC 14 ms
42,240 KB
testcase_02 AC 35 ms
42,368 KB
testcase_03 AC 73 ms
42,368 KB
testcase_04 AC 69 ms
42,368 KB
testcase_05 AC 106 ms
42,364 KB
testcase_06 AC 61 ms
42,364 KB
testcase_07 AC 71 ms
42,368 KB
testcase_08 AC 69 ms
42,352 KB
testcase_09 AC 67 ms
42,240 KB
testcase_10 AC 130 ms
42,336 KB
testcase_11 AC 115 ms
42,464 KB
testcase_12 AC 193 ms
42,496 KB
testcase_13 AC 225 ms
42,364 KB
testcase_14 AC 165 ms
42,496 KB
testcase_15 AC 615 ms
43,648 KB
testcase_16 AC 496 ms
43,648 KB
testcase_17 AC 485 ms
43,644 KB
testcase_18 AC 509 ms
43,648 KB
testcase_19 AC 437 ms
43,640 KB
testcase_20 AC 572 ms
43,772 KB
testcase_21 AC 536 ms
43,772 KB
testcase_22 AC 628 ms
43,648 KB
testcase_23 AC 357 ms
43,768 KB
testcase_24 AC 566 ms
43,648 KB
testcase_25 AC 280 ms
43,772 KB
testcase_26 AC 584 ms
43,776 KB
testcase_27 AC 24 ms
42,240 KB
testcase_28 AC 24 ms
42,460 KB
testcase_29 AC 46 ms
43,772 KB
testcase_30 AC 115 ms
42,752 KB
testcase_31 AC 79 ms
42,880 KB
testcase_32 AC 180 ms
43,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using Int = long long;
const char newl = '\n';

template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);}
template<typename T=Int>
vector<T> read(size_t n){
  vector<T> ts(n);
  for(size_t i=0;i<n;i++) cin>>ts[i];
  return ts;
}

//INSERT ABOVE HERE

const Int LOG = 18;
Int all[1<<LOG]={};
Int cnt[LOG][1<<LOG]={};

signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  Int n,x;
  cin>>n>>x;
  auto as=read(n);

  Int k=LOG;
  while((~x>>k)&1) k--;

  Int ans=0;
  for(Int i=0;i<=k;i++){
    if((~x>>i)&1) continue;
    Int y=(x>>(i+1))<<(i+1);

    memset(all,0,sizeof(all));
    for(Int a:as) all[(a>>i)<<i]++;

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

    for(Int j=0;j<LOG;j++)
      for(Int a:as)
        if((a>>j)&1) ans+=(all[y^((a>>i)<<i)]-(y==0))*(1<<j);
        else ans+=(cnt[j][y^((a>>i)<<i)]-(y==0 and (a>>j)&1))*(1<<j);
  }
  cout<<ans/2<<newl;
  return 0;
}
0