結果

問題 No.2977 Kth Xor Pair
ユーザー 👑 p-adicp-adic
提出日時 2024-11-24 15:55:37
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 517 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 394,292 KB
最終ジャッジ日時 2024-11-30 23:33:11
合計ジャッジ時間 50,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,368 KB
testcase_01 AC 38 ms
59,812 KB
testcase_02 AC 96 ms
83,756 KB
testcase_03 AC 98 ms
365,484 KB
testcase_04 AC 107 ms
83,872 KB
testcase_05 AC 115 ms
365,536 KB
testcase_06 AC 117 ms
84,072 KB
testcase_07 AC 750 ms
131,612 KB
testcase_08 AC 1,472 ms
181,128 KB
testcase_09 AC 1,191 ms
167,948 KB
testcase_10 AC 1,218 ms
167,608 KB
testcase_11 AC 1,271 ms
173,640 KB
testcase_12 AC 1,217 ms
169,224 KB
testcase_13 AC 1,431 ms
177,872 KB
testcase_14 AC 736 ms
130,088 KB
testcase_15 AC 1,130 ms
163,584 KB
testcase_16 AC 1,466 ms
180,876 KB
testcase_17 AC 1,458 ms
181,040 KB
testcase_18 AC 1,449 ms
181,100 KB
testcase_19 AC 1,489 ms
182,148 KB
testcase_20 AC 1,451 ms
180,716 KB
testcase_21 AC 1,326 ms
179,328 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,317 ms
180,844 KB
testcase_26 TLE -
testcase_27 AC 1,436 ms
125,556 KB
testcase_28 AC 1,007 ms
107,232 KB
testcase_29 AC 1,131 ms
112,352 KB
testcase_30 AC 1,325 ms
117,500 KB
testcase_31 AC 1,297 ms
117,372 KB
testcase_32 AC 1,296 ms
105,188 KB
testcase_33 AC 1,211 ms
105,476 KB
testcase_34 AC 1,208 ms
105,300 KB
testcase_35 AC 1,206 ms
394,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,K=J()
A=sorted(bin(n|1<<30)[3:]for n in J())
M=N*(N-1)>>1
p=[[[0,N],[0,N]]]
a=0
def D(v):return v[1]-v[0]
for d in R(30):
	m,q=0,[[],[]]
	for v in p:
		s=[]
		for l,r in v:i=min([r,i][A[i][d]>'0']for i in R(l,r));s+=[[[l,i],[i,r]]]
		m+=D(s[0][0])*D(s[1][1])+(v[0]!=v[1])*D(s[1][0])*D(s[0][1])
		for e in R(2):
			for f in R(2):q[e!=f]+=[[s[0][e],s[1][f]]]*(D(s[0][e])*D(s[1][f])*(v[0]!=v[1]or e<=f)>0)
	if M<K+m:a,K,M,p=a*2|1,K-M+m,m,q[1]
	else:a,M,p=a*2,M-m,q[0]
print(a)
0