Arithmetic Slices II - Subsequence

A sequence of numbers is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the same.

For example, these are arithmetic sequences:

1, 3, 5, 7, 9
7, 7, 7, 7
3, -1, -5, -9
The following sequence is not arithmetic.

1, 1, 2, 5, 7
 
A zero-indexed array A consisting of N numbers is given. A subsequence slice of that array is any sequence of integers (P0, P1, ..., Pk) such that 0 ≤ P0 < P1 < ... < Pk < N.

A subsequence slice (P0, P1, ..., Pk) of array A is called arithmetic if the sequence A[P0], A[P1], ..., A[Pk-1], A[Pk] is arithmetic. In particular, this means that k ≥ 2.

The function should return the number of arithmetic subsequence slices in the array A.

The input contains N integers. Every integer is in the range of -231 and 231-1 and 0 ≤ N ≤ 1000. The output is guaranteed to be less than 231-1.

 
Example:

Input: [2, 4, 6, 8, 10]

Output: 7

Explanation:
All arithmetic subsequence slices are:
[2,4,6]
[4,6,8]
[6,8,10]
[2,4,6,8]
[4,6,8,10]
[2,4,6,8,10]
[2,6,10]


Solution:

class Solution {
    Integer[][][] dp;
    
    public int numberOfArithmeticSlices(int[] A) {
        int res = 0, n = A.length;
        dp = new Integer[n][2][n];
        for (int i = 0; i < n - 2; i ++) {
            for (int j = i + 1; j < n; j ++) {
                int curr = helper(A, i, 0, j);
                // System.out.println(A[i] + ", " + A[j] + ": " + curr);
                res += curr;
            }
        }
        return res;
    }
    
    // flag = 1 means lens >= 3
    private int helper(int[] A, int prev, int flag, int curr) {
        if (curr == A.length) return 0;
        if (dp[prev][flag][curr] != null) return dp[prev][flag][curr];
        int res = 0;
        if (flag == 1) {
            res ++;
        }
        for (int i = curr + 1; i < A.length; i ++) {
            if ((long) A[i] - A[curr] == (long) A[curr] - A[prev]) {
                res += helper(A, curr, 1, i);
            }
        }
        return dp[prev][flag][curr] = res;
    }
}