結果

問題 No.2977 Kth Xor Pair
ユーザー ShirotsumeShirotsume
提出日時 2024-12-01 00:45:06
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 929 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 679,468 KB
最終ジャッジ日時 2024-12-01 00:47:07
合計ジャッジ時間 120,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
71,920 KB
testcase_01 AC 60 ms
499,100 KB
testcase_02 AC 241 ms
89,888 KB
testcase_03 MLE -
testcase_04 AC 186 ms
90,192 KB
testcase_05 MLE -
testcase_06 AC 191 ms
89,768 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
def debug(*x):print('debug:',*x, file=sys.stderr)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

def xor_str(x, y):
    return ''.join(str(int(a) ^ int(b)) for a, b in zip(x, y))
n, k = mi()
a = li()

prefix_counter = Counter()
A = []
for v in a:
    s = bin(v)[2:]
    while len(s) < 30:
        s = '0' + s
    A.append(s)
    for i in range(30):
        prefix_counter[s[:i+1]] += 1

ans = ''

for i in range(30):
    #まず0を付けると仮定
    zans = ans + '0'
    zcnt = 0
    for v in A:
        prefix_counter[v[:len(zans)]] -= 1
        tocnt = xor_str(zans, v[:len(zans)])
        zcnt += prefix_counter[tocnt]
    if zcnt >= k:
        ans += '0'
    else:
        ans += '1'
        k -= zcnt
print(int(ans, 2))
0