結果

問題 No.699 ペアでチームを作ろう2
ユーザー ccppjsrbccppjsrb
提出日時 2020-08-20 23:21:43
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 2,205 bytes
コンパイル時間 12,321 ms
コンパイル使用メモリ 226,512 KB
実行使用メモリ 14,980 KB
最終ジャッジ日時 2024-04-21 19:24:07
合計ジャッジ時間 15,068 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 115 ms
5,376 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

func configure(scanner *bufio.Scanner) {
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
}
func getNextString(scanner *bufio.Scanner) string {
	scanned := scanner.Scan()
	if !scanned {
		panic("scan failed")
	}
	return scanner.Text()
}
func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}
func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}
func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	extra := 0
	if os.Getenv("I") == "IronMan" {
		fp, _ = os.Open(os.Getenv("END_GAME"))
		extra = 100
	}
	scanner := bufio.NewScanner(fp)
	configure(scanner)
	writer := bufio.NewWriter(wfp)
	defer func() {
		r := recover()
		if r != nil {
			fmt.Fprintln(writer, r)
		}
		writer.Flush()
	}()
	solve(scanner, writer)
	for i := 0; i < extra; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	m := mohu{}
	m.aa = make([]int, n)
	m.cc = make([]int, n/2)
	for i := 0; i < n; i++ {
		m.aa[i] = getNextInt(scanner)
	}
	ans = 0
	m.combination(0, 0, n, 0)
	fmt.Fprintln(writer, ans)
}

var ans int

type mohu struct {
	aa, cc []int
}

func (m *mohu) combination(c, l, n int, used uint32) {
	if c<<1 == n {
		m.permutation(0, n/2, 0, used)
		return
	}
	c++
	for i := l; i+(n/2-c) < n; i++ {
		m.combination(c, i+1, n, used|1<<uint(i))
	}
}

func (m *mohu) permutation(c, n int, used, pair uint32) {
	if c == n {
		j := 0
		k := 0
		x := 0
		cc := make([]int, n)
		dd := make([]int, n)
		for i := 0; i < n*2; i++ {
			if pair>>uint(i)&1 == 0 {
				cc[m.cc[j]] = m.aa[i]
				j++
				continue
			}
			dd[k] = m.aa[i]
			k++
		}
		for i := 0; i < n; i++ {
			x = x ^ (cc[i] + dd[i])
		}
		if ans < x {
			ans = x
		}
		return
	}
	for i := 0; i < n; i++ {
		if used>>uint(i)&1 == 1 {
			continue
		}
		m.cc[c] = i
		m.permutation(c+1, n, used|1<<uint(i), pair)
	}
}
0