GSS1 - Can you answer these queries I

You are given a sequence A[1], A[2] ... A[N] . ( |A[i]| ≤ 15007 , 1 ≤ N ≤ 50000 ). A query is defined as follows:
Query(x, y) = Max { a[i] + a[i+1] + ... + a[j] ; x ≤ i ≤ j ≤ y }.
Given M queries, your program must output the results of these queries.

Input

  • The first line of the input file contains the integer N.
  • In the second line, N numbers follow.
  • The third line contains the integer M.
  • M lines follow, where line i contains 2 numbers xi and yi.

Output

Your program should output the results of the M queries, one query per line.

Example

Input:
3 
-1 2 3
1
1 2

Output:
2

Added by:Nguyen Dinh Tu
Date:2006-11-01
Time limit:1s
Source limit:5000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET

hide comments
2018-01-17 18:37:39
first time i got runtime error (SIGSEGV) , then TLE then WA and finally AC
thanks @somanshu_s
2018-01-07 15:15:58
@geek_lady take i=1 and j=1 (assuming 0-indexing in array) we get sum =2.
here you want max sum so we get sum 2 instead of taking both for sum 1.
2018-01-02 18:21:34 excursionist
Testcase 9 gives TLE :(
2018-01-02 16:17:58
must if you want to learn segment tree
2017-12-22 12:39:21
No, you should get 118 as answer
@m2do

Last edit: 2017-12-22 12:39:49
2017-12-22 12:23:07
what would be the output of the following case? someone, please explain. My code gives 123 as output, am I correct?
5
3 -10 100 -2 20
1
1 5

Last edit: 2017-12-22 12:24:38
2017-12-09 22:12:53
Hint for this problem : Build segment tree on this structure :
struct node
{
LL mxsum,totalsum,prefixsum,suffixsum;
};
Try GSS3 after this .
2017-12-04 18:05:00
i am getting a runtine error (SIGSEGV ).Can someone help please
2017-11-29 16:38:04
really a difficult problem someone please explain how can it be solved
2017-11-15 21:34:41
i donot get given testcase .
input :
3
-1 2 3
1
1 2
output:
2
the output for this test case should be 1 .can anyone help me in this?
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.