結果

問題 No.130 XOR Minimax
ユーザー 👑 KazunKazun
提出日時 2022-12-11 03:42:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 982 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,916 KB
最終ジャッジ日時 2024-10-15 03:11:21
合計ジャッジ時間 4,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
80,512 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 60 ms
76,160 KB
testcase_05 AC 63 ms
82,688 KB
testcase_06 AC 112 ms
90,112 KB
testcase_07 AC 117 ms
90,880 KB
testcase_08 AC 129 ms
90,916 KB
testcase_09 AC 92 ms
76,288 KB
testcase_10 AC 101 ms
77,440 KB
testcase_11 AC 122 ms
88,192 KB
testcase_12 AC 75 ms
75,776 KB
testcase_13 AC 114 ms
84,580 KB
testcase_14 AC 166 ms
88,832 KB
testcase_15 AC 46 ms
60,928 KB
testcase_16 AC 116 ms
84,428 KB
testcase_17 AC 136 ms
83,840 KB
testcase_18 AC 136 ms
85,492 KB
testcase_19 AC 131 ms
87,844 KB
testcase_20 AC 124 ms
81,408 KB
testcase_21 AC 140 ms
89,216 KB
testcase_22 AC 98 ms
77,420 KB
testcase_23 AC 72 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def General_Binary_Increase_Search_Integer(L, R, cond, default=None):
    """ 条件式が単調増加であるとき, 整数上で二部探索を行う.

    L: 解の下限
    R: 解の上限
    cond: 条件(1変数関数, 広義単調増加を満たす)
    default: Lで条件を満たさないときの返り値
    """

    if not(cond(R)):
        return default

    if cond(L):
        return L

    R+=1
    while R-L>1:
        C=L+(R-L)//2
        if cond(C):
            R=C
        else:
            L=C
    return R

def solve():
    N=int(input())
    A=list(map(int,input().split()))

    A.sort()

    def bit(x,k):
        return (x>>k)&1

    def calc(l,r):
        if A[l]==A[r-1]:
            return 0

        k=(A[l]^A[r-1]).bit_length()-1
        i=General_Binary_Increase_Search_Integer(l,r-1, lambda i:bit(A[i],k))
        return (1<<k)+min(calc(l,i), calc(i,r))

    return calc(0,N)

#==================================================
print(solve())
0