Submit | All submissions | Best solutions | Back to list |
KGSS - Maximum Sum |
This will be indicated in the input by a 'U' followed by space and then two integers i and x.
U i x, 1 ≤ i ≤ N, and x, 0 ≤ x ≤ 10^8.
This operation sets the value of A[i] to x.
Query:This will be indicated in the input by a 'Q' followed by a single space and then two integers i and j.
Q x y, 1 ≤ x < y ≤ N.
You must find i and j such that x ≤ i, j ≤ y and i != j, such that the sum A[i]+A[j] is maximized. Print the sum A[i]+A[j].
Input
The first line of input consists of an integer N representing the length of the sequence. Next line consists of N space separated integers A[i]. Next line contains an integer Q, Q ≤ 10^5, representing the number of operations. Next Q lines contain the operations.
Output
Output the maximum sum mentioned above, in a separate line, for each Query.
Example
Input: 5 1 2 3 4 5 6 Q 2 4 Q 2 5 U 1 6 Q 1 5 U 1 7 Q 1 5 Output: 7 9 11 12
Added by: | Swarnaprakash |
Date: | 2009-01-10 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO NODEJS PERL6 VB.NET |
Resource: | Kurukshetra 09 OPC |
hide comments
|
||||||||||||||
2019-01-13 09:11:18
AC in one go |
||||||||||||||
2018-12-29 13:14:34
segment tree done the job...AC in 1 go :) |
||||||||||||||
2018-08-24 12:28:10
by using a structure array for the max and second max is not working in java...tle |
||||||||||||||
2018-06-30 10:25:20
My 100th :) Modified Range maximum Query AC in one go. |
||||||||||||||
2018-06-22 16:51:30
Dont know why structured array is giving tle . Segment tree work's fine worth solving the problem. Must do it |
||||||||||||||
2018-05-31 11:10:55
nice problem.. learnt a lot.. AC in 1st go.. :) must try problem for beginner |
||||||||||||||
2018-04-06 08:51:22
AC in first attempt!!! |
||||||||||||||
2018-03-12 12:14:46
my 99th :) |
||||||||||||||
2018-03-03 20:53:30
AC in one go!!!! |
||||||||||||||
2018-03-01 11:57:56
AC in 1 go! Easy AF! |