結果
問題 | No.162 8020運動 |
ユーザー | aru aru |
提出日時 | 2020-08-28 21:44:49 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 1,042 ms / 5,000 ms |
コード長 | 2,048 bytes |
コンパイル時間 | 11,108 ms |
コンパイル使用メモリ | 222,868 KB |
実行使用メモリ | 129,024 KB |
最終ジャッジ日時 | 2024-11-14 00:05:43 |
合計ジャッジ時間 | 40,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 783 ms
120,380 KB |
testcase_01 | AC | 904 ms
127,740 KB |
testcase_02 | AC | 971 ms
124,176 KB |
testcase_03 | AC | 1,038 ms
126,960 KB |
testcase_04 | AC | 1,040 ms
126,952 KB |
testcase_05 | AC | 1,035 ms
129,008 KB |
testcase_06 | AC | 1,037 ms
129,024 KB |
testcase_07 | AC | 1,031 ms
120,752 KB |
testcase_08 | AC | 1,042 ms
120,744 KB |
testcase_09 | AC | 783 ms
122,464 KB |
testcase_10 | AC | 973 ms
124,220 KB |
testcase_11 | AC | 899 ms
119,476 KB |
testcase_12 | AC | 837 ms
127,092 KB |
testcase_13 | AC | 1,037 ms
126,956 KB |
testcase_14 | AC | 799 ms
120,492 KB |
testcase_15 | AC | 796 ms
124,644 KB |
testcase_16 | AC | 849 ms
125,152 KB |
testcase_17 | AC | 811 ms
120,668 KB |
testcase_18 | AC | 1,026 ms
126,816 KB |
testcase_19 | AC | 957 ms
120,004 KB |
testcase_20 | AC | 982 ms
120,244 KB |
testcase_21 | AC | 980 ms
122,300 KB |
testcase_22 | AC | 969 ms
120,116 KB |
testcase_23 | AC | 986 ms
122,304 KB |
testcase_24 | AC | 970 ms
122,172 KB |
testcase_25 | AC | 1,001 ms
126,572 KB |
testcase_26 | AC | 788 ms
120,376 KB |
testcase_27 | AC | 919 ms
123,716 KB |
testcase_28 | AC | 1,024 ms
124,752 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 } type pair struct { n int p float64 } var P [3]float64 var ns [][]pair func prob(prev, next int) float64 { res := 1.0 for i := 0; i < 14; i++ { if ((prev >> i) & 1) == 0 { continue } var p float64 if i == 0 { p = P[(prev>>1)&1] } else if i == 13 { p = P[(prev>>12)&1] } else { p = P[(prev>>(i-1)&1)+(prev>>(i+1))&1] } if next>>i&1 == 1 { res *= 1 - p } else { res *= p } } return res } var dp [21][1 << 14]float64 func main() { sc.Split(bufio.ScanWords) N := 80 - getInt() p := getInts(3) for i := 0; i < 3; i++ { P[i] = float64(p[i]) / 100.0 } ns = make([][]pair, 1<<14) for i := 0; i < 1<<14; i++ { for j := 0; j < 1<<14; j++ { if i&j != j { continue } ns[i] = append(ns[i], pair{j, prob(i, j)}) } } dp[0][(1<<14)-1] = 1.0 for i := 0; i < N; i++ { for j := 0; j < 1<<14; j++ { for _, p := range ns[j] { dp[i+1][p.n] += dp[i][j] * p.p } } } res := 0.0 for i := 0; i < 1<<14; i++ { res += dp[N][i] * float64(bits.OnesCount(uint(i))) } out(res * 2) }