CF280D.k-Maximum Subsequence Sum
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Consider integer sequence a1,a2,...,an . You should run queries of two types:
- The query format is " 0 i val ". In reply to this query you should make the following assignment: ai=val .
- The query format is " 1 l r k ". In reply to this query you should print the maximum sum of at most k non-intersecting subsegments of sequence al,al+1,...,ar . Formally, you should choose at most k pairs of integers (x1,y1),(x2,y2),...,(xt,yt) (l<=x1<=y1<x2<=y2<...<xt<=yt<=r; t<=k) such that the sum ax1+ax1+1+...+ay1+ax2+ax2+1+...+ay2+...+axt+axt+1+...+ayt is as large as possible. Note that you should choose at most k subsegments. Particularly, you can choose 0 subsegments. In this case the described sum considered equal to zero.
输入格式
The first line contains integer n (1<=n<=105) , showing how many numbers the sequence has. The next line contains n integers a1,a2,...,an (∣ai∣<=500) .
The third line contains integer m (1<=m<=105) — the number of queries. The next m lines contain the queries in the format, given in the statement.
All changing queries fit into limits: 1<=i<=n , ∣val∣<=500 .
All queries to count the maximum sum of at most k non-intersecting subsegments fit into limits: 1<=l<=r<=n , 1<=k<=20 . It is guaranteed that the number of the queries to count the maximum sum of at most k non-intersecting subsegments doesn't exceed 10000 .
输出格式
For each query to count the maximum sum of at most 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
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) . 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.