結果

問題 No.1240 Or Sum of Xor Pair
ユーザー mkawa2mkawa2
提出日時 2023-11-28 00:05:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,106 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 270,924 KB
最終ジャッジ日時 2024-09-26 12:43:14
合計ジャッジ時間 28,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,368 KB
testcase_01 AC 41 ms
57,984 KB
testcase_02 AC 44 ms
60,288 KB
testcase_03 AC 106 ms
83,508 KB
testcase_04 AC 106 ms
84,392 KB
testcase_05 AC 105 ms
83,336 KB
testcase_06 AC 97 ms
79,328 KB
testcase_07 AC 88 ms
79,132 KB
testcase_08 AC 93 ms
78,440 KB
testcase_09 AC 102 ms
84,608 KB
testcase_10 AC 232 ms
109,952 KB
testcase_11 AC 298 ms
116,900 KB
testcase_12 AC 414 ms
139,852 KB
testcase_13 AC 356 ms
129,788 KB
testcase_14 AC 497 ms
143,164 KB
testcase_15 TLE -
testcase_16 AC 1,811 ms
244,788 KB
testcase_17 AC 1,851 ms
245,108 KB
testcase_18 AC 1,888 ms
245,208 KB
testcase_19 AC 1,746 ms
245,084 KB
testcase_20 AC 1,988 ms
245,396 KB
testcase_21 AC 1,929 ms
245,348 KB
testcase_22 TLE -
testcase_23 AC 1,624 ms
244,528 KB
testcase_24 AC 1,918 ms
245,096 KB
testcase_25 AC 1,525 ms
245,080 KB
testcase_26 AC 1,978 ms
245,344 KB
testcase_27 AC 40 ms
58,112 KB
testcase_28 AC 39 ms
52,480 KB
testcase_29 WA -
testcase_30 AC 288 ms
88,960 KB
testcase_31 AC 351 ms
89,448 KB
testcase_32 AC 883 ms
270,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

class BinaryTrie:
    def __init__(self, max_bit_len=32):
        self.dd=[[0]*max_bit_len]
        self.cc = [0]
        self.to = [[-1], [-1]]
        self.mb = max_bit_len

    def add(self, a):
        u = 0
        self.cc[u] += 1
        for i in range(self.mb-1, -1, -1):
            d = a >> i & 1
            if self.to[d][u] == -1:
                self.to[d][u] = len(self.cc)
                self.to[0].append(-1)
                self.to[1].append(-1)
                self.cc.append(0)
                self.dd.append([0]*self.mb)
            u = self.to[d][u]
            self.cc[u] += 1
            dd=self.dd[u]
            for j in range(self.mb):dd[j]+=a>>j&1

    def getval(self,a,x):
        res=[0]*self.mb
        ax=a^x
        u=0
        for i in range(self.mb)[::-1]:
            e=ax>>i&1
            v=self.to[e^1][u]
            if x>>i&1 and v!=-1:
                for j in range(self.mb):
                    if a>>j&1:
                        res[j]+=self.cc[v]
                    else:
                        res[j]+=self.dd[v][j]
            u=self.to[e][u]
            if u==-1:break
        return res

n,x=LI()
aa=LI()
bt=BinaryTrie(18)
dd=[0]*18

for a in aa:
    res=bt.getval(a,x)
    for j in range(18):dd[j]+=res[j]
    bt.add(a)

ans=0
base=1
for d in dd:
    ans+=base*d
    base<<=1
print(ans)
0