CF272C.Dima and Staircase
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Dima's got a staircase that consists of n stairs. The first stair is at height a1 , the second one is at a2 , the last one is at an ( 1<=a1<=a2<=...<=an ).
Dima decided to play with the staircase, so he is throwing rectangular boxes at the staircase from above. The i -th box has width wi and height hi . Dima throws each box vertically down on the first wi stairs of the staircase, that is, the box covers stairs with numbers 1,2,...,wi . Each thrown box flies vertically down until at least one of the two following events happen:
- the bottom of the box touches the top of a stair;
- the bottom of the box touches the top of a box, thrown earlier.
We only consider touching of the horizontal sides of stairs and boxes, at that touching with the corners isn't taken into consideration. Specifically, that implies that a box with width wi cannot touch the stair number wi+1 .
You are given the description of the staircase and the sequence in which Dima threw the boxes at it. For each box, determine how high the bottom of the box after landing will be. Consider a box to fall after the previous one lands.
输入格式
The first line contains integer n (1<=n<=105) — the number of stairs in the staircase. The second line contains a non-decreasing sequence, consisting of n integers, a1,a2,...,an (1<=ai<=109; ai<=ai+1) .
The next line contains integer m (1<=m<=105) — the number of boxes. Each of the following m lines contains a pair of integers wi,hi (1<=wi<=n; 1<=hi<=109) — the size of the i -th thrown box.
The numbers in the lines are separated by spaces.
输出格式
Print m integers — for each box the height, where the bottom of the box will be after landing. Print the answers for the boxes in the order, in which the boxes are given in the input.
Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
输入输出样例
输入#1
5 1 2 3 6 6 4 1 1 3 1 1 1 4 3
输出#1
1 3 4 6
输入#2
3 1 2 3 2 1 1 3 1
输出#2
1 3
输入#3
1 1 5 1 2 1 10 1 10 1 10 1 10
输出#3
1 3 13 23 33
说明/提示
The first sample are shown on the picture.