1218. Longest Arithmetic Subsequence of Given Difference

Given an integer array arr and an integer difference, return the length of the longest subsequence in arr which is an arithmetic sequence such that the difference between adjacent elements in the subsequence equals difference.

A subsequence is a sequence that can be derived from arr by deleting some or no elements without changing the order of the remaining elements.

Example 1:

Input: arr = [1,2,3,4], difference = 1
Output: 44
Explanation: The longest arithmetic subsequence is [1,2,3,4].

Example 2:

Input: arr = [1,3,5,7], difference = 1
Output: 11
Explanation: The longest arithmetic subsequence is any single element.

Example 3:

Input: arr = [1,5,7,8,5,3,4,2,1], difference = -2
Output: 44
Explanation: The longest arithmetic subsequence is [7,5,3,1].

Constraints:

  • 11\leq arr.length 105\leq 10^5
  • 104-10^4\leq arr[i], difference 104\leq 10^4

Solution

Brute Force

For this problem, let's think of building the subsequence one integer at a time. If our subsequence is currently ending with the integer kk, our next integer will have to be kk ++ difference. Since subsequences must follow the relative order of the original array, we want to pick the next closest value of kk ++ difference and append it to our subsequence. We can also observe that appending the closest value of kk ++ difference will give us more options for the next addition to our subsequence.

To find the longest subsequence however, we can try all possible starting positions for our subsequence and construct it greedily with the method mentioned above. Out of all subsequences, we'll return the length of the longest one.

Example

For this example, we'll start the sequence at index 11 and difference is 22.

Example

Our subsequence starts with 33 and we're looking for 33 ++ difference =5=5. It appears at indices 4,7,4,7, and 99. We want the next closest position so we'll pick the 55 at index 44. We apply the same idea to then pick 77 at index 55 and finally 99 at index 1111.

Let NN represent arr.length.

Since building the subsequence takes O(N)\mathcal{O}(N) and we build O(N)\mathcal{O}(N) subsequences (one for each starting position), this algorithm runs in O(N2)\mathcal{O}(N^2).

Full Solution

For a faster solution, we'll use dynamic programming. We know that to extend subsequence ending with kk, we'll find the next closest element with value kk ++ difference and add it into our subsequence. We can also think of this idea from the other direction. To find the subsequence ending with kk ++ difference at some position, we'll look for the previous closest element kk. Then, we'll take the longest subsequence ending with that specific element kk and append kk ++ difference to obtain our desired subsequence. This idea uses solutions from sub-problems to solve a larger problem, which is essentially dynamic programming.

Let dp[i] represent the length of the longest subsequence with the last element at index ii.

Let j represent the previous closest index of the value arr[i] - difference. If j exists, then dp[i] = dp[j] + 1 since we take the longest subsequence ending at index j and append arr[i] to it. Otherwise, our subsequence is just arr[i] itself so dp[i] = 1.

We can maintain the previous closest index of integers with a hashmap. The hashmap will use a key for the integer and the value will be the closest index of that integer. Everytime we process dp[i] for some index ii, we'll update arr[i] into our hashmap. Our final answer is the maximum value among all values in dp.

Time Complexity

Since we take O(1)\mathcal{O}(1) to calculate dp[i] for one index ii, our time complexity is O(N)\mathcal{O}(N) since dp has a length of O(N)\mathcal{O}(N).

Time Complexity: O(N)\mathcal{O}(N)

Space Complexity

Our dp array and hashmap both use O(N)\mathcal{O}(N) memory so our space complexity is O(N)\mathcal{O}(N).

Space Complexity: O(N)\mathcal{O}(N)

C++ Solution

1class Solution {
2   public:
3    int longestSubsequence(vector<int>& arr, int difference) {
4        int n = arr.size();
5        unordered_map<int, int> prevIndex;  // keeps track of closest index of integer
6        vector<int> dp(n);
7        int ans = 0;
8        for (int i = 0; i < n; i++) {
9            int prevNum = arr[i] - difference;
10            if (prevIndex.count(prevNum)) {  // checks if prevNum was processed
11                dp[i] = dp[prevIndex[prevNum]] + 1;
12            } else {
13                dp[i] = 1;
14            }
15            prevIndex[arr[i]] = i;  //  the closest previous index of arr[i] is always i at this point
16            ans = max(ans, dp[i]);
17        }
18        return ans;
19    }
20};

Java Solution

1class Solution {
2    public int longestSubsequence(int[] arr, int difference) {
3        int n = arr.length;
4        HashMap<Integer, Integer> prevIndex = new HashMap(); // keeps track of closest index of integer
5        int[] dp = new int[n];
6        int ans = 0;
7        for (int i = 0; i < n; i++) {
8            int prevNum = arr[i] - difference;
9            if (prevIndex.containsKey(prevNum)) { // checks if prevNum was processed
10                dp[i] = dp[prevIndex.get(prevNum)] + 1;
11            } else {
12                dp[i] = 1;
13            }
14            prevIndex.put(arr[i], i);  //  the closest previous index of arr[i] is always i at this point
15            ans = Math.max(ans, dp[i]);
16        }
17        return ans;
18    }
19}

Python Solution

1class Solution:
2    def longestSubsequence(self, arr: List[int], difference: int) -> int:
3        n = len(arr)
4        prevIndex = {}  # keeps track of closest index of integer
5        dp = [0] * n
6        ans = 0
7        for i in range(n):
8            prevNum = arr[i] - difference
9            if prevNum in prevIndex:  # checks if prevNum was processed
10                dp[i] = dp[prevIndex[prevNum]] + 1
11            else:
12                dp[i] = 1
13            prevIndex[arr[i]] = i  #  the closest previous index of arr[i] is always i at this point
14            ans = max(ans, dp[i])
15        return ans
16
Not Sure What to Study? Take the 2-min Quiz to Find Your Missing Piece:

What is the space complexity of the following code?

1int sum(int n) {
2  if (n <= 0) {
3    return 0;
4  }
5  return n + sum(n - 1);
6}
Discover Your Strengths and Weaknesses: Take Our 2-Minute Quiz to Tailor Your Study Plan:

The three-steps of Depth First Search are:

  1. Identify states;
  2. Draw the state-space tree;
  3. DFS on the state-space tree.
Not Sure What to Study? Take the 2-min Quiz:

Which of these pictures shows the visit order of a depth-first search?

Fast Track Your Learning with Our Quick Skills Quiz:

Which data structure is used to implement recursion?


Recommended Readings


Got a question? Ask the Teaching Assistant anything you don't understand.

Still not clear? Ask in the Forum,  Discord or Submit the part you don't understand to our editors.


TA 👨‍🏫