CF280D.k-Maximum Subsequence Sum

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Consider integer sequence a1,a2,...,ana_{1},a_{2},...,a_{n} . You should run queries of two types:

  • The query format is " 00 ii valval ". In reply to this query you should make the following assignment: ai=vala_{i}=val .
  • The query format is " 11 ll rr kk ". In reply to this query you should print the maximum sum of at most kk non-intersecting subsegments of sequence al,al+1,...,ara_{l},a_{l+1},...,a_{r} . Formally, you should choose at most kk pairs of integers (x1,y1),(x2,y2),...,(xt,yt)(x_{1},y_{1}),(x_{2},y_{2}),...,(x_{t},y_{t}) (l<=x1<=y1<x2<=y2<...<xt<=yt<=r; t<=k)(l<=x_{1}<=y_{1}<x_{2}<=y_{2}<...<x_{t}<=y_{t}<=r; t<=k) such that the sum ax1+ax1+1+...+ay1+ax2+ax2+1+...+ay2+...+axt+axt+1+...+ayta_{x1}+a_{x1}+1+...+a_{y1}+a_{x2}+a_{x2}+1+...+a_{y2}+...+a_{xt}+a_{xt}+1+...+a_{yt} is as large as possible. Note that you should choose at most kk subsegments. Particularly, you can choose 0 subsegments. In this case the described sum considered equal to zero.

输入格式

The first line contains integer nn (1<=n<=105)(1<=n<=10^{5}) , showing how many numbers the sequence has. The next line contains nn integers a1,a2,...,ana_{1},a_{2},...,a_{n} (ai<=500)(|a_{i}|<=500) .

The third line contains integer mm (1<=m<=105)(1<=m<=10^{5}) — the number of queries. The next mm lines contain the queries in the format, given in the statement.

All changing queries fit into limits: 1<=i<=n1<=i<=n , val<=500|val|<=500 .

All queries to count the maximum sum of at most kk non-intersecting subsegments fit into limits: 1<=l<=r<=n1<=l<=r<=n , 1<=k<=201<=k<=20 . It is guaranteed that the number of the queries to count the maximum sum of at most kk non-intersecting subsegments doesn't exceed 1000010000 .

输出格式

For each query to count the maximum sum of at most kk non-intersecting subsegments print the reply — the maximum sum. Print the answers to the queries in the order, in which the queries follow in the input.

输入输出样例

  • 输入#1

    9
    9 -8 9 -1 -1 -1 9 -8 9
    3
    1 1 9 1
    1 1 9 2
    1 4 6 3
    

    输出#1

    17
    25
    0
    
  • 输入#2

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

    输出#2

    14
    11
    15
    0
    15
    26
    18
    23
    8
    

说明/提示

In the first query of the first example you can select a single pair (1,9)(1,9) . So the described sum will be 17.

Look at the second query of the first example. How to choose two subsegments? (1, 3) and (7, 9)? Definitely not, the sum we could get from (1, 3) and (7, 9) is 20, against the optimal configuration (1, 7) and (9, 9) with 25.

The answer to the third query is 0, we prefer select nothing if all of the numbers in the given interval are negative.

首页