結果

問題 No.130 XOR Minimax
ユーザー WSKRWSKR
提出日時 2020-09-23 15:12:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 366 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,848 KB
最終ジャッジ日時 2024-09-12 22:58:41
合計ジャッジ時間 5,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
15,160 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 291 ms
12,668 KB
testcase_05 AC 257 ms
21,564 KB
testcase_06 AC 366 ms
20,704 KB
testcase_07 AC 307 ms
21,564 KB
testcase_08 AC 259 ms
21,848 KB
testcase_09 AC 82 ms
12,160 KB
testcase_10 AC 113 ms
13,056 KB
testcase_11 AC 352 ms
18,872 KB
testcase_12 AC 54 ms
11,392 KB
testcase_13 AC 285 ms
17,376 KB
testcase_14 AC 277 ms
19,896 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 197 ms
17,064 KB
testcase_17 AC 204 ms
17,244 KB
testcase_18 AC 218 ms
18,052 KB
testcase_19 AC 260 ms
19,112 KB
testcase_20 AC 132 ms
14,880 KB
testcase_21 AC 274 ms
19,836 KB
testcase_22 AC 74 ms
12,632 KB
testcase_23 AC 42 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#xor minimax
def main():
    N = int(input())
    a = list(map(int, input().split()))
    a.sort()
    def solve(order, l, r):
        if order == -1:
            return 0
        if l > r:
            return 10**20
        
        if l == r:
            return 0
        else:
            new_r = r + 1
            for i in range(l, r+1):
                if (a[i]>> order) & 1:
                    new_r = i
                    break
         
            if l < new_r < r + 1:
                return min(solve(order-1, l, new_r-1), solve(order-1, new_r, r)) + (1 << order)
            else:
                return solve(order-1, l, r)
                

    ans = solve(30, 0, N-1)
    print(ans)
    return


if __name__ == "__main__":
    main()

0