CF380A.Sereja and Prefixes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Sereja loves number sequences very much. That's why he decided to make himself a new one following a certain algorithm.

Sereja takes a blank piece of paper. Then he starts writing out the sequence in mm stages. Each time he either adds a new number to the end of the sequence or takes ll first elements of the current sequence and adds them cc times to the end. More formally, if we represent the current sequence as a1,a2,...,ana_{1},a_{2},...,a_{n} , then after we apply the described operation, the sequence transforms into a1,a2,...,an[,a1,a2,...,al]a_{1},a_{2},...,a_{n}[,a_{1},a_{2},...,a_{l}] (the block in the square brackets must be repeated cc times).

A day has passed and Sereja has completed the sequence. He wonders what are the values of some of its elements. Help Sereja.

输入格式

The first line contains integer mm (1<=m<=105)(1<=m<=10^{5}) — the number of stages to build a sequence.

Next mm lines contain the description of the stages in the order they follow. The first number in the line is a type of stage (1 or 2). Type 1 means adding one number to the end of the sequence, in this case the line contains integer xix_{i} (1<=xi<=105)(1<=x_{i}<=10^{5}) — the number to add. Type 2 means copying a prefix of length lil_{i} to the end cic_{i} times, in this case the line further contains two integers li,cil_{i},c_{i} (1<=li<=105,1<=ci<=104)(1<=l_{i}<=10^{5},1<=c_{i}<=10^{4}) , lil_{i} is the length of the prefix, cic_{i} is the number of copyings. It is guaranteed that the length of prefix lil_{i} is never larger than the current length of the sequence.

The next line contains integer nn (1<=n<=105)(1<=n<=10^{5}) — the number of elements Sereja is interested in. The next line contains the numbers of elements of the final sequence Sereja is interested in. The numbers are given in the strictly increasing order. It is guaranteed that all numbers are strictly larger than zero and do not exceed the length of the resulting sequence. Consider the elements of the final sequence numbered starting from 11 from the beginning to the end of the sequence.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输出格式

Print the elements that Sereja is interested in, in the order in which their numbers occur in the input.

输入输出样例

  • 输入#1

    6
    1 1
    1 2
    2 2 1
    1 3
    2 5 2
    1 4
    16
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
    

    输出#1

    1 2 1 2 3 1 2 1 2 3 1 2 1 2 3 4
    
首页