結果
問題 | No.663 セルオートマトンの逆操作 |
ユーザー | aru aru |
提出日時 | 2020-11-27 22:17:31 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,681 bytes |
コンパイル時間 | 13,675 ms |
コンパイル使用メモリ | 231,980 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-26 13:16:03 |
合計ジャッジ時間 | 14,450 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,944 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var wr = bufio.NewWriter(os.Stdout) func out(x ...interface{}) { fmt.Fprintln(wr, x...) } func getI() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getF() float64 { sc.Scan() i, e := strconv.ParseFloat(sc.Text(), 64) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getI() } return ret } func getS() 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 g(a, b, c int) int { if b == 0 && c == 0 { return 0 } if a == 1 && b == 1 && c == 1 { return 0 } return 1 } func solve(v0, v1 int) int { dp := make([][2][2]int, N) dp[0][v0][v1] = 1 for i := 1; i < N; i++ { for a := 0; a < 2; a++ { for b := 0; b < 2; b++ { for c := 0; c < 2; c++ { if g(a, b, c) == e[i] { dp[i][b][c] += dp[i-1][a][b] dp[i][b][c] %= mod } } } } } ret := 0 for a := 0; a < 2; a++ { for b := 0; b < 2; b++ { if g(a, b, v0) == e[N-1] && g(b, v0, v1) == e[0] { ret += dp[N-1][a][b] ret %= mod } } } return ret } // func solve(v0, v1 int) int { // dp := make([][2][2]int, N+1) // dp[2][v0][v1] = 1 // for i := 2; i < N; i++ { // for a := 0; a < 2; a++ { // for b := 0; b < 2; b++ { // for c := 0; c < 2; c++ { // if g(a, b, c) == e[i-1] { // dp[i+1][b][c] += dp[i][a][b] // dp[i+1][b][c] %= mod // } // } // } // } // } // ans := 0 // for a := 0; a < 2; a++ { // for b := 0; b < 2; b++ { // if g(a, b, v0) == e[N-1] && g(b, v0, v1) == e[0] { // ans += dp[N][a][b] // ans %= mod // } // } // } // return ans // } var N int var e []int const mod = int(1e9 + 7) func main() { defer wr.Flush() sc.Split(bufio.ScanWords) sc.Buffer([]byte{}, 1000000) // this template is new version. // use getI(), getS(), getInts(), getF() N = getI() e = getInts(N) ans := 0 for v0 := 0; v0 < 2; v0++ { for v1 := 0; v1 < 2; v1++ { ans += solve(v0, v1) ans %= mod } } out(ans) }