結果

問題 No.130 XOR Minimax
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-07-01 12:44:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 656 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,048 KB
最終ジャッジ日時 2024-06-28 01:50:14
合計ジャッジ時間 4,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
82,432 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 65 ms
76,544 KB
testcase_05 AC 127 ms
130,048 KB
testcase_06 AC 147 ms
96,512 KB
testcase_07 AC 181 ms
121,216 KB
testcase_08 AC 154 ms
97,408 KB
testcase_09 AC 106 ms
76,800 KB
testcase_10 AC 112 ms
78,080 KB
testcase_11 AC 163 ms
92,544 KB
testcase_12 AC 100 ms
76,160 KB
testcase_13 AC 151 ms
87,936 KB
testcase_14 AC 175 ms
93,440 KB
testcase_15 AC 66 ms
67,584 KB
testcase_16 AC 150 ms
87,168 KB
testcase_17 AC 151 ms
86,784 KB
testcase_18 AC 158 ms
88,448 KB
testcase_19 AC 170 ms
91,392 KB
testcase_20 AC 127 ms
80,896 KB
testcase_21 AC 170 ms
93,696 KB
testcase_22 AC 106 ms
76,928 KB
testcase_23 AC 102 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
def main1(n,a):
  def func(ary):
    # aryに対する答え
    mx=max(ary)
    if mx==0:return 0
    if len(ary)==1:return 0
    bit=1<<(mx.bit_length()-1)
    nary0=[]
    nary1=[]
    for x in ary:
      if x&bit:
        nary0.append(x^bit)
      else:
        nary1.append(x)
    ret=10**10
    for nary in [nary0,nary1]:
      if not nary:continue
      elif len(nary)==len(ary):
        ret=min(ret,func(nary))
      else:
        ret=min(ret,func(nary)+bit)
    return ret
  x=func(a)
  return x

if __name__=='__main__':
  n=int(input())
  a=list(map(int,input().split()))
  ret1=main1(n,a)
  print(ret1)
0