結果

問題 No.1240 Or Sum of Xor Pair
ユーザー SSRSSSRS
提出日時 2020-09-25 22:15:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,374 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 209,816 KB
実行使用メモリ 82,088 KB
最終ジャッジ日時 2024-06-28 06:38:52
合計ジャッジ時間 13,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
81,128 KB
testcase_01 AC 43 ms
81,232 KB
testcase_02 AC 45 ms
81,088 KB
testcase_03 AC 56 ms
81,184 KB
testcase_04 AC 57 ms
81,224 KB
testcase_05 AC 57 ms
81,116 KB
testcase_06 AC 53 ms
81,108 KB
testcase_07 AC 52 ms
81,140 KB
testcase_08 AC 51 ms
81,184 KB
testcase_09 AC 54 ms
81,140 KB
testcase_10 AC 110 ms
81,176 KB
testcase_11 AC 113 ms
81,160 KB
testcase_12 AC 174 ms
81,296 KB
testcase_13 AC 168 ms
81,364 KB
testcase_14 AC 161 ms
81,288 KB
testcase_15 AC 724 ms
81,868 KB
testcase_16 AC 686 ms
81,924 KB
testcase_17 AC 618 ms
82,088 KB
testcase_18 AC 642 ms
81,916 KB
testcase_19 AC 617 ms
81,836 KB
testcase_20 AC 716 ms
82,000 KB
testcase_21 AC 695 ms
81,876 KB
testcase_22 AC 712 ms
81,980 KB
testcase_23 AC 596 ms
81,876 KB
testcase_24 AC 691 ms
82,088 KB
testcase_25 AC 560 ms
81,872 KB
testcase_26 AC 704 ms
81,880 KB
testcase_27 AC 45 ms
81,172 KB
testcase_28 AC 44 ms
81,128 KB
testcase_29 WA -
testcase_30 AC 158 ms
81,468 KB
testcase_31 AC 175 ms
81,572 KB
testcase_32 AC 378 ms
81,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int LOG = 18;
int main(){
  int N, X;
  cin >> N >> X;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<vector<long long>> sum(LOG, vector<long long>(1 << (LOG + 1), 0));
  vector<long long> cnt(1 << (LOG + 1), 0);
  for (int i = 0; i < N; i++){
    int v = 1;
    for (int j = 0; j <= LOG; j++){
      for (int k = 0; k < LOG; k++){
        if (A[i] >> k & 1){
          sum[k][v]++;
        }
      } 
      cnt[v]++;
      if (j < LOG){
        if (A[i] >> (LOG - 1 - j) & 1){
          v = v * 2 + 1;
        } else {
          v = v * 2;
        }
      }
    }
  }
  long long ans = 0;
  for (int i = 0; i < N; i++){
    int v = 1;
    vector<int> id;
    for (int j = LOG - 1; j >= 0; j--){
      if (A[i] >> j & 1){
        if (X >> j & 1){
          id.push_back(v * 2 + 1);
          v = v * 2;
        } else {
          v = v * 2 + 1;
        }
      } else {
        if (X >> j & 1){
          id.push_back(v * 2);
          v = v * 2 + 1;
        } else {
          v = v * 2;
        }
      }
    }
    for (int x : id){
      for (int j = 0; j < LOG; j++){
        if (A[i] >> j & 1){
          ans += cnt[x] << j;
        } else {
          ans += sum[j][x] << j;
        }
      }
    }
  }
  for (int i = 0; i < N; i++){
    ans -= A[i];
  }
  cout << ans / 2 << endl;
}
0