結果

問題 No.130 XOR Minimax
ユーザー hama_duhama_du
提出日時 2015-11-24 15:18:26
言語 Go
(1.22.1)
結果
AC  
実行時間 1,146 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 13,687 ms
コンパイル使用メモリ 225,996 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2024-09-12 22:37:29
合計ジャッジ時間 26,249 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 448 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 1 ms
6,812 KB
testcase_04 AC 241 ms
7,824 KB
testcase_05 AC 1,146 ms
7,956 KB
testcase_06 AC 648 ms
7,828 KB
testcase_07 AC 1,046 ms
7,956 KB
testcase_08 AC 1,049 ms
7,956 KB
testcase_09 AC 91 ms
6,944 KB
testcase_10 AC 148 ms
6,940 KB
testcase_11 AC 542 ms
7,836 KB
testcase_12 AC 43 ms
6,940 KB
testcase_13 AC 431 ms
7,832 KB
testcase_14 AC 894 ms
7,836 KB
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 618 ms
7,836 KB
testcase_17 AC 644 ms
7,836 KB
testcase_18 AC 703 ms
7,840 KB
testcase_19 AC 834 ms
7,836 KB
testcase_20 AC 402 ms
6,944 KB
testcase_21 AC 887 ms
7,832 KB
testcase_22 AC 181 ms
6,944 KB
testcase_23 AC 53 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main
import (
	"fmt"
	"sort"
)

var a []int

func main() {
	var n int
	fmt.Scan(&n)

	a = make([]int, n)
	for i := 0 ; i < n ; i++ {
		fmt.Scan(&a[i])
	}
	sort.Ints(a)

	fmt.Println(solve(1<<30, 0, n))
}

func solve(bit, low, high int) int {
	if bit == 0 {
		return 0
	}

	ln := 0
	hn := 0
	med := -1
	for i := low ; i < high ; i++ {
		if a[i] & bit >= 1 {
			if med == -1 {
				med = i
			}
			hn++
		} else {
			ln++
		}
	}
	if hn == 0 || ln == 0 {
		return solve(bit>>1, low, high)
	}
	left := solve(bit>>1, low, med)
	right := solve(bit>>1, med, high)

	if left < right {
		return left | bit
	} else {
		return right | bit
	}
}
0