问题3792--Digit Count

3792: Digit Count

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Given a set of digits S, and an integer n, you have to find how many n-digit integers are there, which contain digits that belong to S and the difference between any two adjacent digits is not more than two.

输入

Input starts with an integer T (≤ 300), denoting the number of test cases. Each case contains two integers, m (1 ≤ m < 10) and n (1 ≤ n ≤ 20). The next line will contain m integers (from 1 to 9) separated by spaces. These integers form the set S as described above. These integers will be distinct and given in ascending order.

输出

For each case, print the case number and the number of valid n-digit integers in a single line.

样例输入 Copy

3
3 2
1 3 6
3 2
1 2 3
3 3
1 4 6

样例输出 Copy

Case 1: 5
Case 2: 9
Case 3: 9

来源/分类