#Lutece0816. A Game in the Hospital

A Game in the Hospital

Migrated from Lutece 816 A Game in the Hospital

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Mzry1992 got sick recently. He had to go to the hospital for treatment. The time in the hospital was very boring, so Mzry1992 designed a game and wanted to persuade the nurse to play with him.

The game is played as follows: There are nn piles of candies on the table. Each pile has a certain number of candies. Mzry1992 and the nurse take turns to eat candies. As the designed of the game, Mzry1992 always starts first. When it's someone's turn to eat candies, he must select a pile of candies (suppose the pile has mm candies now), and eat xx($0 < x \leq \left \lfloor \frac{A\times m + B}{C} \right \rfloor$) candies. Otherwise, he loses the game.

(x\lfloor x\rfloor indicates the largest integer which is not greater than xx)

The nurse loved candies, so she agreed to play with Mzry1992. To start the game, they began to prepare nn candy piles. After they had arranged the first n1n - 1 piles of candies (where the number of candies in the ithi_{th} pile was xix_i, 1in11 \leq i \leq n - 1), a new patient came in and the nurse had to go to take care of him. So Mzry1992 was left alone to decide the number of candies in the last pile. But before the nurse left, she demanded that the last pile must have no less than LL candies and no more than RR candies, i.e. , LxnRL \leq x_n \leq R.

Mzry1992 agreed with the nurse's demand, since it would be unfair for the nurse if Mzry1992 could place any number of candies in the last pile. Now Mzry1992 wondered, if both he and the nurse play with their best strategies, how many different ways of placing candies in the last pile will make him lose?

Input

The first line has a number TT (T20T\leq 20) , indicating the number of test cases.

Then there comes the input of each test case.

The input of each test case has four lines.

The first line contains three integers AA, BB, and CC(0A,B10180\leq A, B\leq 10^{18}, 1C10181\leq C\leq 10^{18}), which are defined above in the description.

The second line contains an integer nn(1n101\leq n\leq 10), indicating the number of candy piles.

The third line contains n1n - 1 integers x1x_1, x2x_2, \cdots, xn1x_{n-1}, where xix_i(1xi10181\leq x_i\leq 10^{18}) indicates the number of candies in the ithi_{th} pile.

The fourth line contains two integers LL and RR(1LR10181\leq L\leq R\leq 10^{18}), which constrains the number of the nthn_{th} pile in the range [L,R][L, R], i.e., LxnRL \leq x_n \leq R.

We can guaranteed that at any time $\left \lfloor \frac{A\times m + B}{C} \right \rfloor$ will no more than 10510^5.

Output

For every case, you should output Case #t: at first, without quotes. The tt is the case number starting from 11.

Then follows the answer. which indicates the number of different ways of placing candies in the nthn_{th} pile that will make Mzry1992 lose.

Samples

1
1 2 3
3
3 4
1 8
Case #1: 1

Resources

2013 ACM/ICPC Asia Regional Chengdu Online