Minesweeper 1D

题意翻译

给定一个串,由 `0`,`1`,`2`,`*`,`?` 组成。求将`?`替换成其他字符中的任意一个,使原串合法的方案数。将`*`视为雷,数字就是数字,合法为扫雷地图的合法性。 PS:数字 $i$ 表示以 $i$ 为中心的九宫格中只有 $i$ 个雷。如 `2*` 是非法的,而 `*2*` 是合法的。

题目描述

Game "Minesweeper 1D" is played on a line of squares, the line's height is 1 square, the line's width is $ n $ squares. Some of the squares contain bombs. If a square doesn't contain a bomb, then it contains a number from 0 to 2 — the total number of bombs in adjacent squares. For example, the correct field to play looks like that: 001\*2\*\*\*101\*. The cells that are marked with "\*" contain bombs. Note that on the correct field the numbers represent the number of bombs in adjacent cells. For example, field 2\* is not correct, because cell with value 2 must have two adjacent cells with bombs. Valera wants to make a correct field to play "Minesweeper 1D". He has already painted a squared field with width of $ n $ cells, put several bombs on the field and wrote numbers into some cells. Now he wonders how many ways to fill the remaining cells with bombs and numbers are there if we should get a correct field in the end.

输入输出格式

输入格式


The first line contains sequence of characters without spaces $ s_{1}s_{2}...\ s_{n} $ $ (1<=n<=10^{6}) $ , containing only characters "\*", "?" and digits "0", "1" or "2". If character $ s_{i} $ equals "\*", then the $ i $ -th cell of the field contains a bomb. If character $ s_{i} $ equals "?", then Valera hasn't yet decided what to put in the $ i $ -th cell. Character $ s_{i} $ , that is equal to a digit, represents the digit written in the $ i $ -th square.

输出格式


Print a single integer — the number of ways Valera can fill the empty cells and get a correct field. As the answer can be rather large, print it modulo $ 1000000007 $ $ (10^{9}+7) $ .

输入输出样例

输入样例 #1

?01???

输出样例 #1

4

输入样例 #2

?

输出样例 #2

2

输入样例 #3

**12

输出样例 #3

0

输入样例 #4

1

输出样例 #4

0

说明

In the first test sample you can get the following correct fields: 001\*\*1, 001\*\*\*, 001\*2\*, 001\*10.