Skip to main content

SPOJ - GSS1


Considering input series: { 4 , -10 , 3 , 100 , -20 , 1 }

Query(x,y) = Max { a[i]+a[i+1]+...+a[j] ; x ≤ i ≤ j ≤ y }


A node contains- 
[ START & END is a node's segment limit ]
Prefix is the maximum sum starting at START, end can be anywhere. There are two possibilities of the maximum. One, node's leftChild's prefix or two, adding leftChild's sum + rightChild's prefix. (which will make the prefix contiguous)
Suffix is the maximum sum ending at END, start can be anywhere.
There's two possibility of the maximum. One, node's rightChild's already calculated suffix or two, add rightChild's sum + leftChild's suffix (which will make the suffix contiguous).
Sum: leftChild's sum + rightChild's sum.
MAX Maximum of  - 
  • prefix (result is in the node, starts from START but doesn't end in END )
  • suffix  (result is in the node, doesn't start from START but surely ends in END )
  • leftChild's max ( result is in left child completely )
  • rightChild's max (result is in right child completely )
  • leftChild's suffix + rightChild's prefix ( result is in between leftChild & rightChild )
[ this explains why we need prefix,suffix in a node: to calculate MAX ]

Notice that, in last point, we can't add leftChild's Max + rightChild's Max because in some cases that would result in a non-contiguous MAX. 
Considering sub interval  4 -10  3
  • prefix = 4
  • suffix = 3
  • sum = -3
  • best = 4 

considering subinterval 100 -20   1
  • prefix =100    leftChild's prefix
  • suffix = 81     rightChild's sum + leftChild's suiffx 
  • sum =81
  • best = 100     prefix from above 
In query function, we'll build a node RESULT to return\.
finally, Query(x,y) = result.MAX ;








Comments

  1. you saved my day with clear explanation of prefix and suffix. _/\_

    ReplyDelete
  2. thanks buddy!
    you have made everything clear just in one post which I wasn't unable to find in about 10 different posts.
    :D

    ReplyDelete
  3. There is an error I guess,
    in third line of image
    tree[node].suf = max(tree[RIGHT].suf , tree[LEFT].suf+tree[RIGHT].sum)

    ReplyDelete
  4. In the picture , in node 1-2 , shouldn't the value be 4,-6,-6,4 ?

    ReplyDelete
  5. Can we do this using Binary Indexed Trees as well?

    ReplyDelete
  6. Amazing blog on this topic...
    Thanks man

    ReplyDelete
  7. In Image 1, Node 1 should store sum of range [1,6] which should be 78, But it is written -78.

    ReplyDelete
  8. In Image 1, Node 1 should store prefix sum of range [1,6] which should be 97, But it is written 78.
    Please correct me if I am wrong.

    ReplyDelete

Post a Comment

Popular posts from this blog

SPOJ 95 - STPAR - Street Parade

Problem Statement Heuristics:   Let, N be the number which is next in fixed order. Take an input X , if it is equal to N then next number will be n++. If not, then search for N in the side lane and after finishing the search, put X in the side lane. After all X is processed but N is not found in either X or side lane, then the order is not possible. Solution:

SPOJ 394- ACODE

Problem Statement As from the problem-tag, you can see this is a DP( Dynamic Programming ) problem. Don't know Dynamic Programming? Here are some articles: Codechef , TopCoder . Try to solve a sample problem, for example, Fibonacci Numbers. Let's start cracking the problem. To solve a DP problem, the hardest and important part is to find the relation between previous or next steps and current step . We need to find out how the solution of the current step depends on its previous steps or next steps. Looking at:      2 5 1 1 4        from left to right Step 1: You can only interpret this as 2(B). Decoding- B EAAD  So, DP[1] = 1 Step 2: This can be 5(E) or collaborating with 2, it can be 25(Y). Result is BE AAD + Y AAD . So, DP[2] = 2 Step 3: Can only be interpreted as 1(A). 51 is not valid, as stated in problem. BEA AD + YA AD . DP[3] = 2.  Step 4: Will be interpreted as 1(A). BEAA D + YAA D+... ...