Segment Tree
Segment Tree is a data structure that enables us to answer queries like minimum, maximum, sum etc. for any \([l,r]\) interval in \(\mathcal{O}(\log N)\) time complexity and update these intervals.
Segment Tree is more useful than Fenwick Tree and Sparse Table structures because it allows updates on elements and provides the possibility to answer queries like minimum, maximum etc. for any \([l,r]\) interval. Also, the memory complexity of Segment Tree is \(\mathcal{O}(N)\) while the memory complexity of the Sparse Table structure is \(\mathcal{O}(N \log N)\).
Structure and Construction¶
Segment Tree has a "Complete Binary Tree" structure. The leaf nodes of the Segment Tree store the elements of the array, and each internal node's value is calculated with a function that takes its children's values as inputs. Thus, the answers of certain intervals are stored in each node, and the answer of the whole array is stored in the root node. For example, for a Segment Tree structure built for the sum query, the value of each node is equal to the sum of its children's values.
![segment tree structure to query sum on array a = [41,67,6,30,85,43,39]](../img/segtree.png)
Query and Update Algorithms¶
Query Algorithm¶
For any \([l,r]\) interval, the query algorithm works as follows: - Divide the \([l,r]\) interval into the widest intervals that are stored in the tree. - Merge the answers of these intervals to calculate the desired answer.
There are at most \(2\) intervals that are needed to calculate the answer at each depth of the tree. Therefore, the query algorithm works in \(\mathcal{O}(\log N)\) time complexity.
![on array a = [41,67,6,30,85,43,39] query at \([2,6]\) interval](../img/segtreequery.png)
On array \(a = [41,67,6,30,85,43,39]\), the answer of the \([2,6]\) interval is obtained by merging the answers of the \([2,3]\) and \([4,6]\) intervals. The answer for the sum query is calculated as \(36+167=203\).
Update Algorithm¶
Update the value of every node that contains \(x\) indexed element.
It is sufficient to update the values of at most \(\log(N)\) nodes from the leaf node containing the \(x\) indexed element to the root node. Therefore, the time complexity of updating the value of any element is \(\mathcal{O}(\log N)\).
![the nodes that should be updated when updating the \(5^{th}\) index of the array a = [41,67,6,30,85,43,39] are as follows:](../img/segtreeupdate.png)
A sample problem related to the Segment Tree data structure can be found here.
Segment Tree with Lazy Propagation¶
Previously, update function was called to update only a single value in array. Please note that a single value update in array may cause changes in multiple nodes in Segment Tree as there may be many segment tree nodes that have this changed single element in it’s range.
Lazy Propogation Algorithm¶
We need a structure that can perform following operations on an array \([1,N]\).
- Add inc to all elements in the given range \([l, r]\).
- Return the sum of all elements in the given range \([l, r]\).
Notice that if update was for single element, we could use the segment tree we have learned before. Trivial structure comes to mind is to use an array and do the operations by traversing and increasing the elements one by one. Both operations would take \(\mathcal{O}(L)\) time complexity in this structure where \(L\) is the number of elements in the given range.
Let’s use segment tree’s we have learned. Second operation is easy, We can do it in \(\mathcal{O}(\log N)\). What about the first operation. Since we can do only single element update in the regular segment tree, we have to update all elements in the given range one by one. Thus we have to perform update operation \(L\) times. This works in \(\mathcal{O}(L \times \log N)\) for each range update. This looks bad, even worse than just using an array in a lot of cases.
So we need a better structure. People developed a trick called lazy propagation to perform range updates on a structure that can perform single update (This trick can be used in segment trees, treaps, k-d trees ...).
Trick is to be lazy i.e, do work only when needed. Do the updates only when you have to. Using Lazy Propagation we can do range updates in \(\mathcal{O}(\log N)\) on standart segment tree. This is definitely fast enough.
Updates Using Lazy Propogation¶
Let’s be lazy as told, when we need to update an interval, we will update a node and mark its children that it needs to be updated and update them when needed. For this we need an array \(lazy[]\) of the same size as that of segment tree. Initially all the elements of the \(lazy[]\) array will be \(0\) representing that there is no pending update. If there is non-zero element \(lazy[k]\) then this element needs to update node k in the segment tree before making any query operation, then \(lazy[2\cdot k]\) and \(lazy[2 \cdot k + 1]\) must be also updated correspondingly.
To update an interval we will keep 3 things in mind.
- If current segment tree node has any pending update, then first add that pending update to current node and push the update to it’s children.
- If the interval represented by current node lies completely in the interval to update, then update the current node and update the \(lazy[]\) array for children nodes.
- If the interval represented by current node overlaps with the interval to update, then update the nodes as the earlier update function.
This is the update function for given problem. Notice that when we arrive a node, all the updates that we postponed that would effect this node will be performed since we are pushing them downwards as we go to this node. Thus this node will keep the exact values when the range updates are done without lazy. So it’s seems like it is working. How about queries?
Queries Using Lazy Propogation¶
Since we have changed the update function to postpone the update operation, we will have to change the query function as well. The only change we need to make is to check if there is any pending update operation on that node. If there is a pending update, first update the node and then proceed the same way as the earlier query function. As mentioned in the previous subsection, all the postponed updates that would affect this node will be performed before we reach it. Therefore, the sum value we look for will be correct.
Binary Search on Segment Tree¶
Assume we have an array A that contains elements between 1 and \(M\). We have to perform 2 kinds of operations.
- Change the value of the element in given index i by x.
- Return the value of the kth element on the array when sorted.
How to Solve It Naively¶
Let’s construct a frequency array, \(F[i]\) will keep how many times number i occurs in our original array. So we want to find smallest \(i\) such that \(\sum_{j=1}^{i} F[i] \geq k\). Then the number \(i\) will be our answer for the query. And for updates we just have to change \(F\) array accordingly.
![naive updates](../img/naive_update.png)
This is the naive algorithm. Update is O(1) and query is O(M).
How to Solve It With Segment Tree¶
This is of course, slow. Let’s use segment tree’s to improve it. First we will construct a segment tree on \(F\) array. Segment tree will perform single element updates and range sum queries. We will use binary search to find corresponding \(i\) for \(k^{th}\) element queries.
![segment tree updates](../img/updated_segtree.png)
If you look at the code above you can notice that each update takes \(\mathcal{O}(\log M)\) time and each query takes \(\mathcal{O}(\log^{2} M)\) time, but we can do better.
How To Speed Up?¶
If you look at the segment tree solution on preceding subsection you can see that queries are performed in \(\mathcal{O}(\log^{2} M)\) time. We can make is faster, actually we can reduce the time complexity to \(\mathcal{O}(\log M)\) which is same with the time complexity for updates. We will do the binary search when we are traversing the segment tree. We first will start from the root and look at its left child’s sum value, if this value is greater than k, this means our answer is somewhere in the left child’s subtree. Otherwise it is somewhere in the right child’s subtree. We will follow a path using this rule until we reach a leaf, then this will be our answer. Since we just traversed \(\mathcal{O}(\log M)\) nodes (one node at each level), time complexity will be \(\mathcal{O}(\log M)\). Look at the code below for better understanding.
![solution of first query](../img/query_soln.png)