結果

問題 No.1240 Or Sum of Xor Pair
ユーザー SSRSSSRS
提出日時 2020-09-25 22:16:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 209,744 KB
実行使用メモリ 168,096 KB
最終ジャッジ日時 2024-06-28 06:39:26
合計ジャッジ時間 16,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
167,184 KB
testcase_01 AC 78 ms
167,148 KB
testcase_02 AC 77 ms
167,084 KB
testcase_03 AC 90 ms
167,180 KB
testcase_04 AC 90 ms
167,144 KB
testcase_05 AC 90 ms
167,144 KB
testcase_06 AC 89 ms
167,104 KB
testcase_07 AC 86 ms
167,200 KB
testcase_08 AC 85 ms
167,200 KB
testcase_09 AC 89 ms
167,204 KB
testcase_10 AC 154 ms
167,252 KB
testcase_11 AC 148 ms
167,284 KB
testcase_12 AC 222 ms
167,244 KB
testcase_13 AC 221 ms
167,296 KB
testcase_14 AC 206 ms
167,380 KB
testcase_15 AC 838 ms
167,936 KB
testcase_16 AC 754 ms
167,896 KB
testcase_17 AC 711 ms
167,976 KB
testcase_18 AC 768 ms
168,052 KB
testcase_19 AC 729 ms
167,976 KB
testcase_20 AC 830 ms
167,980 KB
testcase_21 AC 803 ms
167,912 KB
testcase_22 AC 840 ms
167,864 KB
testcase_23 AC 694 ms
167,948 KB
testcase_24 AC 773 ms
168,096 KB
testcase_25 AC 624 ms
167,884 KB
testcase_26 AC 785 ms
167,976 KB
testcase_27 AC 78 ms
167,092 KB
testcase_28 AC 75 ms
167,188 KB
testcase_29 AC 482 ms
167,880 KB
testcase_30 AC 194 ms
167,632 KB
testcase_31 AC 216 ms
167,532 KB
testcase_32 AC 424 ms
167,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int LOG = 19;
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