結果

問題 No.1240 Or Sum of Xor Pair
ユーザー beetbeet
提出日時 2020-09-26 12:09:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 204,292 KB
実行使用メモリ 43,876 KB
最終ジャッジ日時 2024-06-28 22:30:39
合計ジャッジ時間 10,694 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
42,368 KB
testcase_01 AC 11 ms
42,312 KB
testcase_02 AC 32 ms
42,440 KB
testcase_03 AC 64 ms
42,368 KB
testcase_04 AC 56 ms
42,472 KB
testcase_05 AC 71 ms
42,368 KB
testcase_06 AC 51 ms
42,368 KB
testcase_07 AC 60 ms
42,368 KB
testcase_08 AC 61 ms
42,460 KB
testcase_09 AC 56 ms
42,464 KB
testcase_10 AC 113 ms
42,444 KB
testcase_11 AC 96 ms
42,444 KB
testcase_12 AC 161 ms
42,492 KB
testcase_13 AC 190 ms
42,448 KB
testcase_14 AC 147 ms
42,496 KB
testcase_15 AC 587 ms
43,648 KB
testcase_16 AC 496 ms
43,776 KB
testcase_17 AC 466 ms
43,744 KB
testcase_18 AC 508 ms
43,748 KB
testcase_19 AC 478 ms
43,748 KB
testcase_20 AC 569 ms
43,748 KB
testcase_21 AC 526 ms
43,752 KB
testcase_22 AC 612 ms
43,876 KB
testcase_23 AC 362 ms
43,648 KB
testcase_24 AC 537 ms
43,648 KB
testcase_25 AC 285 ms
43,648 KB
testcase_26 AC 563 ms
43,648 KB
testcase_27 AC 21 ms
42,368 KB
testcase_28 AC 20 ms
42,368 KB
testcase_29 WA -
testcase_30 AC 115 ms
43,008 KB
testcase_31 AC 88 ms
42,972 KB
testcase_32 AC 194 ms
43,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;

const ll LOG = 18;
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