Longest Increasing Subsequence Size (N log N)
Last Updated :
07 May, 2025
Given an array arr[] of size N, the task is to find the length of the Longest Increasing Subsequence (LIS) i.e., the longest possible subsequence in which the elements of the subsequence are sorted in increasing order, in O(N log N).
Examples:
Input: arr[] = {3, 10, 2, 1, 20}
Output: 3
Explanation: The longest increasing subsequence is 3, 10, 20
Input: arr[] = {3, 2}
Output:1
Explanation: The longest increasing subsequences are {3} and {2}
Input: arr[] = {50, 3, 10, 7, 40, 80}
Output: 4
Explanation: The longest increasing subsequence is {3, 7, 40, 80}
Longest Increasing Subsequence using Binary Search:
The main idea of the approach is to simulate the process of finding a subsequence by maintaining a list of "buckets" where each bucket represents a valid subsequence. Initially, we start with an empty list and iterate through the input vector arr from left to right.
For each number in arr, we perform the following steps:
- If the number is greater than the last element of the last bucket (i.e., the largest element in the current subsequence), we append the number to the end of the list. This indicates that we have found a longer subsequence.
- Otherwise, we perform a binary search on the list of buckets to find the smallest element that is greater than or equal to the current number. This step helps us maintain the property of increasing elements in the buckets.
- Once we find the position to update, we replace that element with the current number. This keeps the buckets sorted and ensures that we have the potential for a longer subsequence in the future.
Note: The resulting array only stores the length of longest increasing subsequence, and not the actual subsequence. Go through the illustration to clear this doubt.
Illustration:
Example: arr = [3, 4, 5, 1, 2, 3, 4] Let's see why keeping 1 (the smallest value) helps:
We use binary search to find the position where new element is to be inserted.
- First three elements: buckets = [3, 4, 5]
- arr[3] = 1 buckets = [1, 4, 5] // 1 replaces 3
- arr[4] = 2 buckets = [1, 2, 5] // 2 replaces 4 as it's smaller
- arr[5] = 3 buckets = [1, 2, 3] // 3 replaces 5
- arr[6] = 4 buckets = [1, 2, 3, 4] // 4 is appended as it's larger
This shows that by replacing 3 with 1, we created the opportunity to find the subsequence [1, 2, 3, 4], which is longer than our initial [3, 4, 5]. If we had kept [3, 4, 5], we wouldn't have been able to add 2 to our sequence!
The key insight is that keeping smaller values at each position:
- Maintains the same length information
- Creates more opportunities for future elements to form longer increasing subsequences
C++
// Binary Search Approach of Finding LIS by
// reducing the problem to longest
// common Subsequence
#include <bits/stdc++.h>
using namespace std;
int lengthOfLIS(vector<int>& arr)
{
// Binary search approach
int n = arr.size();
vector<int> ans;
// Initialize the answer vector with the
// first element of arr
ans.push_back(arr[0]);
for (int i = 1; i < n; i++) {
if (arr[i] > ans.back()) {
// If the current number is greater
// than the last element of the answer
// vector, it means we have found a
// longer increasing subsequence.
// Hence, we append the current number
// to the answer vector.
ans.push_back(arr[i]);
}
else {
// If the current number is not
// greater than the last element of
// the answer vector, we perform
// a binary search to find the smallest
// element in the answer vector that
// is greater than or equal to the
// current number.
// The lower_bound function returns
// an iterator pointing to the first
// element that is not less than
// the current number.
int low = lower_bound(ans.begin(), ans.end(),
arr[i])
- ans.begin();
// We update the element at the
// found position with the current number.
// By doing this, we are maintaining
// a sorted order in the answer vector.
ans[low] = arr[i];
}
}
// The length of the answer vector
// represents the length of the
// longest increasing subsequence.
return ans.size();
}
// Driver program to test above function
int main()
{
vector<int> arr = { 10, 22, 9, 33, 21, 50, 41, 60 };
printf("Length of LIS is %d\n", lengthOfLIS(arr));
return 0;
}
Java
import java.util.*;
public class GFG {
static int lengthOfLIS(int[] arr) {
// Binary search approach
int n = arr.length;
List<Integer> ans = new ArrayList<>();
// Initialize the answer list with the
// first element of arr
ans.add(arr[0]);
for (int i = 1; i < n; i++) {
if (arr[i] > ans.get(ans.size() - 1)) {
// If the current number is greater
// than the last element of the answer
// list, it means we have found a
// longer increasing subsequence.
// Hence, we append the current number
// to the answer list.
ans.add(arr[i]);
} else {
// If the current number is not
// greater than the last element of
// the answer list, we perform
// a binary search to find the smallest
// element in the answer list that
// is greater than or equal to the
// current number.
// The binarySearch method returns
// the index of the first element that is not less than
// the current number.
int low = Collections.binarySearch(ans, arr[i]);
// We update the element at the
// found position with the current number.
// By doing this, we are maintaining
// a sorted order in the answer list.
if (low < 0) {
low = -(low + 1);
}
ans.set(low, arr[i]);
}
}
// The size of the answer list
// represents the length of the
// longest increasing subsequence.
return ans.size();
}
// Driver program to test above function
public static void main(String[] args) {
int[] arr = {10, 22, 9, 33, 21, 50, 41, 60};
System.out.println("Length of LIS is " + lengthOfLIS(arr));
}
}
Python
def lengthOfLIS(arr):
# Binary search approach
n = len(arr)
ans = []
# Initialize the answer list with the
# first element of arr
ans.append(arr[0])
for i in range(1, n):
if arr[i] > ans[-1]:
# If the current number is greater
# than the last element of the answer
# list, it means we have found a
# longer increasing subsequence.
# Hence, we append the current number
# to the answer list.
ans.append(arr[i])
else:
# If the current number is not
# greater than the last element of
# the answer list, we perform
# a binary search to find the smallest
# element in the answer list that
# is greater than or equal to the
# current number.
low = 0
high = len(ans) - 1
while low < high:
mid = low + (high - low) // 2
if ans[mid] < arr[i]:
low = mid + 1
else:
high = mid
# We update the element at the
# found position with the current number.
# By doing this, we are maintaining
# a sorted order in the answer list.
ans[low] = arr[i]
# The length of the answer list
# represents the length of the
# longest increasing subsequence.
return len(ans)
# Driver program to test above function
if __name__ == "__main__":
arr = [10, 22, 9, 33, 21, 50, 41, 60]
print("Length of LIS is", lengthOfLIS(arr))
C#
using System;
using System.Collections.Generic;
class GFG
{
static int LengthOfLIS(List<int> arr)
{
// Binary search approach
int n = arr.Count;
List<int> ans = new List<int>();
// Initialize the answer list with the
// first element of arr
ans.Add(arr[0]);
for (int i = 1; i < n; i++)
{
if (arr[i] > ans[ans.Count - 1])
{
// If the current number is greater
// than the last element of the answer
// list, it means we have found a
// longer increasing subsequence.
// Hence, we append the current number
// to the answer list.
ans.Add(arr[i]);
}
else
{
// If the current number is not
// greater than the last element of
// the answer list, we perform
// a binary search to find the smallest
// element in the answer list that
// is greater than or equal to the
// current number.
// The BinarySearch method returns
// the index of the first element that is not less than
// the current number.
int low = ans.BinarySearch(arr[i]);
// We update the element at the
// found position with the current number.
// By doing this, we are maintaining
// a sorted order in the answer list.
if (low < 0)
{
low = ~low;
}
ans[low] = arr[i];
}
}
// The count of the answer list
// represents the length of the
// longest increasing subsequence.
return ans.Count;
}
// Driver program to test above function
static void Main()
{
List<int> arr = new List<int> { 10, 22, 9, 33, 21, 50, 41, 60 };
Console.WriteLine("Length of LIS is " + LengthOfLIS(arr));
}
}
JavaScript
function lengthOfLIS(arr) {
// Binary search approach
const n = arr.length;
const ans = [];
// Initialize the answer array with the first element of arr
ans.push(arr[0]);
for (let i = 1; i < n; i++) {
if (arr[i] > ans[ans.length - 1]) {
// If the current number is greater than the last element
// of the answer array, it means we have found a
// longer increasing subsequence. Hence, we push the current number
// to the answer array.
ans.push(arr[i]);
} else {
// If the current number is not greater than the last element of
// the answer array, we perform a binary search to find the smallest
// element in the answer array that is greater than or equal to the
// current number.
// The indexOf function returns the first index at which the current
// number can be inserted to maintain sorted order.
const low = ans.findIndex((el) => el >= arr[i]);
// We update the element at the found position with the current number.
// By doing this, we are maintaining a sorted order in the answer array.
ans[low] = arr[i];
}
}
// The length of the answer array represents the length of the
// longest increasing subsequence.
return ans.length;
}
// Driver program to test the function
const arr = [10, 22, 9, 33, 21, 50, 41, 60];
console.log("Length of LIS is " + lengthOfLIS(arr));
Time Complexity: O(n*log(n)) where n is the size of the input vector arr.
Auxiliary Space: O(n)
Similar Reads
Binary Search Algorithm - Iterative and Recursive Implementation Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc
15 min read
What is Binary Search Algorithm? Binary Search is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half and the correct interval to find is decided based on the searched value and the mid value of the interval. Example of binary searchProperties of Binary Search:Binary search is performed o
1 min read
Time and Space Complexity Analysis of Binary Search Algorithm Time complexity of Binary Search is O(log n), where n is the number of elements in the array. It divides the array in half at each step. Space complexity is O(1) as it uses a constant amount of extra space. Example of Binary Search AlgorithmAspectComplexityTime ComplexityO(log n)Space ComplexityO(1)
3 min read
How to calculate "mid" or Middle Element Index in Binary Search? The most common method to calculate mid or middle element index in Binary Search Algorithm is to find the middle of the highest index and lowest index of the searchable space, using the formula mid = low + \frac{(high - low)}{2} Finding the middle index "mid" in Binary Search AlgorithmIs this method
6 min read
Variants of Binary Search
Variants of Binary SearchBinary search is very easy right? Well, binary search can become complex when element duplication occurs in the sorted list of values. It's not always the "contains or not" we search using Binary Search, but there are 5 variants such as below:1) Contains (True or False)Â 2) Index of first occurrence
15+ min read
Meta Binary Search | One-Sided Binary SearchMeta binary search (also called one-sided binary search by Steven Skiena in The Algorithm Design Manual on page 134) is a modified form of binary search that incrementally constructs the index of the target value in the array. Like normal binary search, meta binary search takes O(log n) time. Meta B
9 min read
The Ubiquitous Binary Search | Set 1We are aware of the binary search algorithm. Binary search is the easiest algorithm to get right. I present some interesting problems that I collected on binary search. There were some requests on binary search. I request you to honor the code, "I sincerely attempt to solve the problem and ensure th
15+ min read
Uniform Binary SearchUniform Binary Search is an optimization of Binary Search algorithm when many searches are made on same array or many arrays of same size. In normal binary search, we do arithmetic operations to find the mid points. Here we precompute mid points and fills them in lookup table. The array look-up gene
7 min read
Randomized Binary Search AlgorithmWe are given a sorted array A[] of n elements. We need to find if x is present in A or not.In binary search we always used middle element, here we will randomly pick one element in given range.In Binary Search we had middle = (start + end)/2 In Randomized binary search we do following Generate a ran
13 min read
Abstraction of Binary SearchWhat is the binary search algorithm? Binary Search Algorithm is used to find a certain value of x for which a certain defined function f(x) needs to be maximized or minimized. It is frequently used to search an element in a sorted sequence by repeatedly dividing the search interval into halves. Begi
7 min read
N-Base modified Binary Search algorithmN-Base modified Binary Search is an algorithm based on number bases that can be used to find an element in a sorted array arr[]. This algorithm is an extension of Bitwise binary search and has a similar running time. Examples: Input: arr[] = {1, 4, 5, 8, 11, 15, 21, 45, 70, 100}, target = 45Output:
10 min read
Implementation of Binary Search in different languages
C Program for Binary SearchIn this article, we will understand the binary search algorithm and how to implement binary search programs in C. We will see both iterative and recursive approaches and how binary search can reduce the time complexity of the search operation as compared to linear search.Table of ContentWhat is Bina
7 min read
C++ Program For Binary SearchBinary Search is a popular searching algorithm which is used for finding the position of any given element in a sorted array. It is a type of interval searching algorithm that keep dividing the number of elements to be search into half by considering only the part of the array where there is the pro
5 min read
C Program for Binary SearchIn this article, we will understand the binary search algorithm and how to implement binary search programs in C. We will see both iterative and recursive approaches and how binary search can reduce the time complexity of the search operation as compared to linear search.Table of ContentWhat is Bina
7 min read
Binary Search functions in C++ STL (binary_search, lower_bound and upper_bound)In C++, STL provide various functions like std::binary_search(), std::lower_bound(), and std::upper_bound() which uses the the binary search algorithm for different purposes. These function will only work on the sorted data.There are the 3 binary search function in C++ STL:Table of Contentbinary_sea
3 min read
Binary Search in JavaBinary search is a highly efficient searching algorithm used when the input is sorted. It works by repeatedly dividing the search range in half, reducing the number of comparisons needed compared to a linear search. Here, we are focusing on finding the middle element that acts as a reference frame t
6 min read
Binary Search (Recursive and Iterative) - PythonBinary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Below is the step-by-step algorithm for Binary Search:D
6 min read
Binary Search In JavaScriptBinary Search is a searching technique that works on the Divide and Conquer approach. It is used to search for any element in a sorted array. Compared with linear, binary search is much faster with a Time Complexity of O(logN), whereas linear search works in O(N) time complexityExamples: Input : arr
3 min read
Binary Search using pthreadBinary search is a popular method of searching in a sorted array or list. It simply divides the list into two halves and discards the half which has zero probability of having the key. On dividing, we check the midpoint for the key and use the lower half if the key is less than the midpoint and the
8 min read
Comparison with other Searching
Binary Search Intuition and Predicate Functions The binary search algorithm is used in many coding problems, and it is usually not very obvious at first sight. However, there is certainly an intuition and specific conditions that may hint at using binary search. In this article, we try to develop an intuition for binary search. Introduction to Bi
12 min read
Can Binary Search be applied in an Unsorted Array? Binary Search is a search algorithm that is specifically designed for searching in sorted data structures. This searching algorithm is much more efficient than Linear Search as they repeatedly target the center of the search structure and divide the search space in half. It has logarithmic time comp
9 min read
Find a String in given Array of Strings using Binary Search Given a sorted array of Strings arr and a string x, The task is to find the index of x in the array using the Binary Search algorithm. If x is not present, return -1.Examples:Input: arr[] = {"contribute", "geeks", "ide", "practice"}, x = "ide"Output: 2Explanation: The String x is present at index 2.
6 min read