結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
85,376 KB
testcase_01 AC 63 ms
85,376 KB
testcase_02 AC 112 ms
85,376 KB
testcase_03 AC 176 ms
85,248 KB
testcase_04 AC 175 ms
85,248 KB
testcase_05 AC 218 ms
85,376 KB
testcase_06 AC 163 ms
85,376 KB
testcase_07 AC 188 ms
85,376 KB
testcase_08 AC 184 ms
85,248 KB
testcase_09 AC 173 ms
85,376 KB
testcase_10 AC 253 ms
85,504 KB
testcase_11 AC 231 ms
85,452 KB
testcase_12 AC 334 ms
85,504 KB
testcase_13 AC 395 ms
85,576 KB
testcase_14 AC 293 ms
85,504 KB
testcase_15 AC 836 ms
86,656 KB
testcase_16 AC 688 ms
86,656 KB
testcase_17 AC 658 ms
86,656 KB
testcase_18 AC 706 ms
86,656 KB
testcase_19 AC 597 ms
86,656 KB
testcase_20 AC 772 ms
86,656 KB
testcase_21 AC 718 ms
86,656 KB
testcase_22 AC 851 ms
86,656 KB
testcase_23 AC 512 ms
86,656 KB
testcase_24 AC 741 ms
86,656 KB
testcase_25 AC 414 ms
86,656 KB
testcase_26 AC 780 ms
86,656 KB
testcase_27 AC 87 ms
85,248 KB
testcase_28 AC 87 ms
85,376 KB
testcase_29 AC 138 ms
86,656 KB
testcase_30 AC 226 ms
85,760 KB
testcase_31 AC 174 ms
85,888 KB
testcase_32 AC 324 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))<<j;
        else ans+=(cnt[j][y^f(a)]-(y==0 and (a>>j)&1))<<j;
      }
    }
  }

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