結果

問題 No.2977 Kth Xor Pair
ユーザー detteiuudetteiuu
提出日時 2024-12-06 02:23:33
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 668 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 689,428 KB
最終ジャッジ日時 2024-12-06 02:25:18
合計ジャッジ時間 103,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,856 KB
testcase_01 AC 42 ms
57,472 KB
testcase_02 AC 74 ms
76,800 KB
testcase_03 AC 74 ms
443,712 KB
testcase_04 AC 80 ms
78,720 KB
testcase_05 AC 80 ms
446,748 KB
testcase_06 AC 81 ms
78,848 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 2,442 ms
306,252 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 2,810 ms
116,700 KB
testcase_28 AC 2,498 ms
116,704 KB
testcase_29 AC 2,525 ms
116,828 KB
testcase_30 AC 2,656 ms
116,960 KB
testcase_31 AC 2,650 ms
116,704 KB
testcase_32 AC 1,893 ms
102,016 KB
testcase_33 AC 1,833 ms
101,760 KB
testcase_34 AC 1,833 ms
101,888 KB
testcase_35 AC 1,781 ms
102,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

C = [dict() for _ in range(30)]
for i in range(N):
    for j in range(30):
        key = A[i] & ~((1<<(30-j))-1)
        bit = 1&A[i]>>(29-j)
        if (key, bit) in C[j]:
            C[j][(key, bit)] += 1
        else:
            C[j][(key, bit)] = 1

ans = 0
cnt = 0
flag = False
for i in range(30):
    c = 0
    for j in range(N):
        key = (ans^A[j]) & ~((1<<(30-i))-1)
        bit = 1&A[j]>>(29-i)
        if (key, bit) in C[i]:
            c += C[i][(key, bit)]
        if ans == 0:
            c -= 1
    c //= 2
    if cnt+c < K:
        ans |= 1<<(29-i)
        cnt += c

print(ans)
0