結果

問題 No.663 セルオートマトンの逆操作
ユーザー rlangevinrlangevin
提出日時 2024-01-17 12:47:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-28 03:11:23
合計ジャッジ時間 3,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 44 ms
51,584 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 44 ms
51,840 KB
testcase_05 AC 44 ms
51,840 KB
testcase_06 AC 48 ms
51,968 KB
testcase_07 AC 44 ms
51,712 KB
testcase_08 AC 47 ms
51,968 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 44 ms
52,096 KB
testcase_14 AC 42 ms
52,224 KB
testcase_15 AC 42 ms
51,840 KB
testcase_16 AC 51 ms
59,904 KB
testcase_17 AC 42 ms
51,712 KB
testcase_18 AC 42 ms
52,096 KB
testcase_19 AC 42 ms
51,968 KB
testcase_20 AC 58 ms
61,952 KB
testcase_21 AC 70 ms
66,560 KB
testcase_22 AC 76 ms
69,376 KB
testcase_23 AC 85 ms
71,808 KB
testcase_24 AC 100 ms
76,928 KB
testcase_25 AC 104 ms
77,056 KB
testcase_26 AC 106 ms
77,440 KB
testcase_27 AC 43 ms
52,096 KB
testcase_28 AC 43 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
e = []
for i in range(N):
    e.append(int(input()))
    
dp = [[[0] * 4 for _ in range(N)] for _ in range(4)]
for i in range(4):
    dp[i][1][i] = 1
    
S = [[0, 4, 7], [1, 2, 3, 5, 6]]
mod = 10 ** 9 + 7
for a in range(4):
    for n in range(2, N):
        for x in range(4):
            for i in range(2):
                now = x * 2 + i
                if now not in S[e[n - 1]]:
                    continue
                nx = now % 4
                dp[a][n][nx] += dp[a][n-1][x]
                dp[a][n][nx] %= mod
                
ans = 0
for a in range(4):
    for b in range(4):
        nx = b % 2 * 4 + a
        if nx not in S[e[0]]:
            continue
        nx = b * 2 + a // 2
        if nx not in S[e[-1]]:
            continue
        ans += dp[a][-1][b]
        ans %= mod
        
print(ans)
0