COI '19 #3 Semafor

View as PDF

Submit solution


Points: 20 (partial)
Time limit: 4.0s
Memory limit: 512M

Problem type

You are most likely familiar with a so-called 7-segment display which is widely used to depict digits on various digital devices, such as watches or calculators. Due to its simplicity, intuitiveness and aestheticism, this design has been accepted across the globe. Still, young Matej argues against the 7-segment design and claims that the same functionality can be obtained more efficiently, using only 5 segments.

5-segment display design – segments are labeled with letters from a to e.

Matej decided to make his first entrepreneurial steps in the most prosperous branch of Croatian economy, football. His revolutionary design will be used on a substitution board during the games of 1. HNL (the elite tier of Croatian professional football). He is currently making a presentation for the board of directors at the Croatian Football Association.

The substitution board consists of M 5-segment displays which, from left to right, represent the digits of a jersey number worn by the player that is about to leave the pitch. At the beginning of Matej's presentation, the substitution board represents the number X, and Matej will make one of the following moves each second:

  • Turn on one segment that is currently turned off.
  • Turn off one segment that is currently turned on.

In total, Matej will make N moves and he will make sure that after each K-th move, the board shows a valid number. The number is valid if each of its digits is correctly shown on the corresponding display (i.e. segments that are turned on show a valid digit). Also, numbers having less than M digits are validly shown if they contain the appropriate number of leading zeros.

For each final state (integer between 0 and 10^M - 1), Matej is interested in how many different ways could he make his moves during the presentation such that this final state is reached at the end. Of course, he needs to adhere to all limitations presented in the previous chapters. We consider two sequences of moves different if, imagining they are executed on two different boards at the same time, there is a moment at which the two boards represent a different state.

Since the number of different ways can be quite large, you are asked to compute it modulo 10^9 + 7.

Input Specification

The first line contains integers M, N, K (1 \le K \le N), and X (0 \le X < 10^M) from the task description.

Output Specification

In the i-th line, you should output the number of different ways for the substitution board to show the number i-1 at the end of Matej's presentations. The numbers should be printed modulo 10^9 + 7.

Constraints

SubtaskPointsConstraints
16M = 1, 1 \le N \le 12
215M = 1, 1 \le N \le 10^{15}
312M = 2, 1 \le N \le 1\,500, K = N
412M = 2, 1 \le N \le 10^{15}, 1 \le K \le 15
515M = 2, 1 \le N \le 10^{15}, 1 \le K \le 1\,500
640M = 2, 1 \le N \le 10^{15}

Sample Input 1

1 2 1 5

Sample Output 1

0
0
0
1
0
2
0
0
0
0

Explanation for Sample Output 1

At the beginning of the presentation, the (single-digit) substitution board shows the number 5. After each move (due to K = 1), the board must show a valid number. Matej is going to make a total of N = 2 moves. Therefore, at the end of the presentation, the board can show either number 3 or number 5. Number 3 can be obtained using one way (5 \to 9 \to 3) and number 5 can be obtained using two ways (5 \to 9 \to 5 and 5 \to 8 \to 5).

Sample Input 2

1 3 3 8

Sample Output 2

0
0
0
6
0
13
0
0
0
0

Sample Input 3

1 4 2 4

Sample Output 3

24
0
8
0
37
0
4
28
4
24

Comments

There are no comments at the moment.