CF455E.Function

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Serega and Fedor play with functions. One day they came across a very interesting function. It looks like that:

  • f(1,j)=a[j]f(1,j)=a[j] , 1<=j<=n1<=j<=n .
  • f(i,j)=min(f(i1,j),f(i1,j1))+a[j]f(i,j)=min(f(i-1,j),f(i-1,j-1))+a[j] , 2<=i<=n2<=i<=n , i<=j<=ni<=j<=n .

Here aa is an integer array of length nn .

Serega and Fedya want to know what values this function takes at some points. But they don't want to calculate the values manually. So they ask you to help them.

输入格式

The first line contains integer nn ( 1<=n<=1051<=n<=10^{5} ) — the length of array aa . The next line contains nn integers: a[1],a[2],...,a[n]a[1],a[2],...,a[n] ( 0<=a[i]<=1040<=a[i]<=10^{4} ).

The next line contains integer mm (1<=m<=105)(1<=m<=10^{5}) — the number of queries. Each of the next mm lines contains two integers: xix_{i} , yiy_{i} ( 1<=xi<=yi<=n1<=x_{i}<=y_{i}<=n ). Each line means that Fedor and Serega want to know the value of f(xi,yi)f(x_{i},y_{i}) .

输出格式

Print mm lines — the answers to the guys' queries.

输入输出样例

  • 输入#1

    6
    2 2 3 4 3 4
    4
    4 5
    3 4
    3 4
    2 3
    

    输出#1

    12
    9
    9
    5
    
  • 输入#2

    7
    1 3 2 3 4 0 2
    4
    4 5
    2 3
    1 4
    4 6
    

    输出#2

    11
    4
    3
    0
    
首页