시간 제한메모리 제한제출정답맞힌 사람정답 비율
40 초 512 MB111100.000%

문제

A rectangular grid with lower case English letters in each cell is called doubly sorted if in each row the letters are non-decreasing from the left to the right, and in each column the letters are non-decreasing from the top to the bottom. In the following examples, the first two grids are doubly sorted, while the other two are not:

abc    ace    aceg    base
def    ade    cdef    base
ghi    bdg    xxyy    base

You are given a partially-filled grid, where some of the cells are filled with letters. Your task is to compute the number of ways you can fill the rest of the cells so that the resulting grid is doubly sorted. The answer might be a big number; you need to output the number of ways modulo 10007.

입력

The first line of input gives the number of test cases, T.  T test cases follow. Each test case starts with a line containing two integers R and C, the number of rows and the number of columns respectively. This is followed by R lines, each containing a string of length C, giving the partially-filled grid. Each character in the grid is either a lower-case English letter, or '.', indicating that the cell is not filled yet.

Limits

  • 1 ≤ T ≤ 40
  • Each character in the partially-filled grid is either '.' or a lower-case English letter.
  • 1 ≤ RC ≤ 10

출력

For each test case, output one line. That line should contain "Case #X: y", where X is the case number starting with 1, and y is the number of possible doubly-sorted grids, modulo 10007.

예제 입력 1

3
2 2
ad
c.
3 3
.a.
a.z
.z.
4 4
....
.g..
.cj.
....

예제 출력 1

Case #1: 23
Case #2: 7569
Case #3: 0

채점 및 기타 정보

  • 예제는 채점하지 않는다.