CF404D.Minesweeper 1D

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Game "Minesweeper 1D" is played on a line of squares, the line's height is 1 square, the line's width is nn 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 nn 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 s1s2... sns_{1}s_{2}...\ s_{n} (1<=n<=106)(1<=n<=10^{6}) , containing only characters "*", "?" and digits "0", "1" or "2". If character sis_{i} equals "*", then the ii -th cell of the field contains a bomb. If character sis_{i} equals "?", then Valera hasn't yet decided what to put in the ii -th cell. Character sis_{i} , that is equal to a digit, represents the digit written in the ii -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 10000000071000000007 (109+7)(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.

首页