|
||||||||||
A Game in the HospitalTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 204 Accepted Submission(s): 7 Problem 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 n 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 m candies now), and eat x(0 < x <= ) candies. Otherwise, he loses the game. ("" indicates the largest integer which is not greater than x) The nurse loved candies, so she agreed to play with Mzry1992. To start the game, they began to prepare n candy piles. After they had arranged the first n-1 piles of candies (where the number of candies in the ith pile was xi, 1 <= i <= 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 L candies and no more than R candies, i.e. , L <= xn <= 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 T (T <= 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 A, B, and C(0 <= A,B <= 1018, 1 <= C <= 1018), which are defined above in the description. The second line contains an integer n(1 <= n <= 10), indicating the number of candy piles. The third line contains n - 1 integers x1, x2, ... , xn-1, where xi(1 <= xi <= 1018) indicates the number of candies in the ith pile. The fourth line contains two integers L and R(1 <= L <= R <= 1018), which constrains the number of the nth pile in the range [L, R], i.e., L <= xn <= R. We can guaranteed that at any time will no more than 105. Output For every case, you should output "Case #t: " at first, without quotes. The t is the case number starting from 1. Then follows the answer. which indicates the number of different ways of placing candies in the nth pile that will make Mzry1992 lose. Sample Input
Sample Output
Source | ||||||||||
|