結果
問題 | No.174 カードゲーム(Hard) |
ユーザー | aru aru |
提出日時 | 2020-09-01 22:45:03 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 305 ms / 2,000 ms |
コード長 | 2,446 bytes |
コンパイル時間 | 12,783 ms |
コンパイル使用メモリ | 233,532 KB |
実行使用メモリ | 19,948 KB |
最終ジャッジ日時 | 2024-11-20 20:03:51 |
合計ジャッジ時間 | 16,285 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,824 KB |
testcase_02 | AC | 304 ms
19,944 KB |
testcase_03 | AC | 304 ms
19,944 KB |
testcase_04 | AC | 302 ms
19,944 KB |
testcase_05 | AC | 303 ms
19,944 KB |
testcase_06 | AC | 303 ms
19,944 KB |
testcase_07 | AC | 302 ms
19,948 KB |
testcase_08 | AC | 305 ms
19,944 KB |
testcase_09 | AC | 303 ms
19,944 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
ソースコード
package main import ( "bufio" "fmt" "math/bits" "os" "sort" "strconv" ) func out(x ...interface{}) { fmt.Println(x...) } var sc = bufio.NewScanner(os.Stdin) func getInt() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getInt() } return ret } func getString() string { sc.Scan() return sc.Text() } // min, max, asub, absなど基本関数 func max(a, b int) int { if a > b { return a } return b } func min(a, b int) int { if a < b { return a } return b } func asub(a, b int) int { if a > b { return a - b } return b - a } func abs(a int) int { if a >= 0 { return a } return -a } func lowerBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] >= x }) return idx } func upperBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] > x }) return idx } func getf() float64 { sc.Scan() f, _ := strconv.ParseFloat(sc.Text(), 64) return f } var probA [20][20]float64 var probB [20][20]float64 func main() { sc.Split(bufio.ScanWords) N := getInt() pa, pb := getf(), getf() a := getInts(N) b := getInts(N) sort.Ints(a) sort.Ints(b) dp := make([]float64, 1<<N) dp[0] = 1 for i := 0; i < 1<<N; i++ { count := bits.OnesCount(uint(i)) first := true firstP := 1.0 if count != N-1 { firstP = pa } secondP := 1 - firstP if count != N-1 { secondP /= float64(N - 1 - count) } for j := 0; j < N; j++ { if (i>>j)%2 == 1 { continue } p := secondP if first { p = firstP first = false } dp[i+(1<<j)] += dp[i] * p probA[count][j] += dp[i] * p } } dp = make([]float64, 1<<N) dp[0] = 1 for i := 0; i < 1<<N; i++ { count := bits.OnesCount(uint(i)) first := true firstP := 1.0 if count != N-1 { firstP = pb } secondP := 1 - firstP if count != N-1 { secondP /= float64(N - 1 - count) } for j := 0; j < N; j++ { if (i>>j)%2 == 1 { continue } p := secondP if first { p = firstP first = false } dp[i+(1<<j)] += dp[i] * p probB[count][j] += dp[i] * p } } ans := 0.0 for i := 0; i < N; i++ { for j := 0; j < N; j++ { move := 0.0 if a[i] > b[j] { move = float64(a[i] + b[j]) } for k := 0; k < N; k++ { ans += move * probA[k][i] * probB[k][j] } } } out(ans) }