#P1614E. Divan and a Cottage
Divan and a Cottage
No submission language available for this problem.
Description
Divan's new cottage is finally complete! However, after a thorough inspection, it turned out that the workers had installed the insulation incorrectly, and now the temperature in the house directly depends on the temperature outside. More precisely, if the temperature in the house is in the morning, and the street temperature is , then by the next morning the temperature in the house changes according to the following rule:
- , if ,
- , if ,
- , if .
Divan is a very busy businessman, so sometimes he is not at home for long periods and does not know what the temperature is there now, so he hired you to find it. You will work for days. In the beginning of the -th day, the temperature outside is first given to you. After that, on the -th day, you will receive queries. Each query asks the following: "if the temperature in the house was at the morning of the first day, what would be the temperature in the house next morning (after day )?"
Please answer all the businessman's queries.
The first line of the input contains the number () — the number of days.
The following is a description of days in the following format.
The first line of the description contains an integer () — the temperature on that day.
The second line contains a non-negative integer () — the number of queries that day.
The third line contains integers () — the encrypted version of Divan's queries.
Let initially. Divan's actual queries are given by , where is the reminder when is divided by . After answering the query, set to the answer.
It is guaranteed that the total number of queries (the sum of all ) does not exceed .
For each query, output a single integer — the temperature in the house after day .
Input
The first line of the input contains the number () — the number of days.
The following is a description of days in the following format.
The first line of the description contains an integer () — the temperature on that day.
The second line contains a non-negative integer () — the number of queries that day.
The third line contains integers () — the encrypted version of Divan's queries.
Let initially. Divan's actual queries are given by , where is the reminder when is divided by . After answering the query, set to the answer.
It is guaranteed that the total number of queries (the sum of all ) does not exceed .
Output
For each query, output a single integer — the temperature in the house after day .
Samples
Note
Let's look at the first four queries from the example input.
The temperature is on the first day, on the second day, and on the third day.
Note that initially.
- The initial temperature of the first query of the first day is . After the first day, the temperature rises by , because . So the answer to the query is . Then, we set .
- The initial temperature of the second query of the first day is . After the first day, the temperature rises by , because . So the answer to the query is . Then, we set .
- The initial temperature of the third query of the first day is . After the first day, the temperature rises by . So the answer to the query is . Then, we set .
- The initial temperature of the first query of the second day is . After the first day, the temperature rises by . After the second day, the temperature rises by . So the answer to the query is . Then, we set .