#P3638. Cf172 k-Maximum Subsequence Sum

Cf172 k-Maximum Subsequence Sum

k-Maximum Subsequence Sum

题面翻译

长度为nn 的数列,支持两种操作: 1.修改某个位置的值 2.询问区间[l,r][l,r] 里选出至多kk 个不相交的子段和的最大值。 一共有mm 个操作

感谢@Fheiwn 提供的翻译

题目描述

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

  • The query format is " 0 0 i i val val ". In reply to this query you should make the following assignment: ai=val a_{i}=val .
  • The query format is " 1 1 l l r r k k ". In reply to this query you should print the maximum sum of at most k k non-intersecting subsegments of sequence al,al+1,...,ar a_{l},a_{l+1},...,a_{r} . Formally, you should choose at most k k pairs of integers (x1,y1),(x2,y2),...,(xt,yt) (x_{1},y_{1}),(x_{2},y_{2}),...,(x_{t},y_{t}) $ (l<=x_{1}<=y_{1}<x_{2}<=y_{2}<...<x_{t}<=y_{t}<=r; t<=k) $ such that the sum $ a_{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 k k subsegments. Particularly, you can choose 0 subsegments. In this case the described sum considered equal to zero.

输入格式

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

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

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

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

输出格式

For each query to count the maximum sum of at most k k 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

样例输入 #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

样例输入 #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.