結果

問題 No.2977 Kth Xor Pair
ユーザー むつあるむつある
提出日時 2024-12-01 02:47:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,923 ms / 3,000 ms
コード長 1,179 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 459,276 KB
最終ジャッジ日時 2024-12-01 02:48:23
合計ジャッジ時間 24,853 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,232 KB
testcase_01 AC 38 ms
51,948 KB
testcase_02 AC 88 ms
75,788 KB
testcase_03 AC 86 ms
76,236 KB
testcase_04 AC 109 ms
75,876 KB
testcase_05 AC 91 ms
75,996 KB
testcase_06 AC 96 ms
76,016 KB
testcase_07 AC 417 ms
154,404 KB
testcase_08 AC 732 ms
229,060 KB
testcase_09 AC 579 ms
206,492 KB
testcase_10 AC 612 ms
211,440 KB
testcase_11 AC 625 ms
220,032 KB
testcase_12 AC 632 ms
211,252 KB
testcase_13 AC 655 ms
231,580 KB
testcase_14 AC 403 ms
153,500 KB
testcase_15 AC 590 ms
202,960 KB
testcase_16 AC 663 ms
237,948 KB
testcase_17 AC 692 ms
236,088 KB
testcase_18 AC 684 ms
237,880 KB
testcase_19 AC 656 ms
238,072 KB
testcase_20 AC 686 ms
235,712 KB
testcase_21 AC 652 ms
236,744 KB
testcase_22 AC 1,923 ms
458,548 KB
testcase_23 AC 1,835 ms
458,692 KB
testcase_24 AC 1,876 ms
459,276 KB
testcase_25 AC 613 ms
234,696 KB
testcase_26 AC 1,880 ms
459,216 KB
testcase_27 AC 622 ms
258,740 KB
testcase_28 AC 454 ms
259,120 KB
testcase_29 AC 507 ms
258,736 KB
testcase_30 AC 572 ms
258,732 KB
testcase_31 AC 572 ms
259,004 KB
testcase_32 AC 551 ms
260,268 KB
testcase_33 AC 547 ms
258,740 KB
testcase_34 AC 547 ms
259,256 KB
testcase_35 AC 578 ms
258,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
k*=2
k+=n-1
a=list(map(int,input().split()))

now=[[a,a]]

ans=0
cnt=0

for i in range(30)[::-1]:
  xx=[]
  yy=[]
  c=0
  p=1<<i
  for x,y in now:
    x0=0
    x1=0
    y0=0
    y1=0
    for v in x:
      if v&p:
        x1+=1
      else:
        x0+=1
    for v in y:
      if v&p:
        y1+=1
      else:
        y0+=1
    c+=x0*y0+x1*y1
  now2=[]
  if cnt+c>k:
    for x,y in now:
      p1=[[],[]]
      p2=[[],[]]
      for v in x:
        if v&p:
          p1[0].append(v)
        else:
          p2[0].append(v)
      for v in y:
        if v&p:
          p1[1].append(v)
        else:
          p2[1].append(v)
      if p1[0] and p1[1]:
        now2.append(p1)
      if p2[0] and p2[1]:
        now2.append(p2)
        
  else:
    cnt+=c
    for x,y in now:
      p1=[[],[]]
      p2=[[],[]]
      for v in x:
        if v&p:
          p1[0].append(v)
        else:
          p2[1].append(v)
      for v in y:
        if v&p:
          p2[0].append(v)
        else:
          p1[1].append(v)
      if p1[0] and p1[1]:
        now2.append(p1)
      if p2[0] and p2[1]:
        now2.append(p2)
  now=now2
    
print(now[0][0][0]^now[0][1][0])
0