Number of Ways to Stay in the Same Place After Some Steps

You have a pointer at index 0 in an array of size arrLen. At each step, you can move 1 position to the left, 1 position to the right in the array or stay in the same place  (The pointer should not be placed outside the array at any time).

Given two integers steps and arrLen, return the number of ways such that your pointer still at index 0 after exactly steps steps.

Since the answer may be too large, return it modulo 10^9 + 7.

 

Example 1:

Input: steps = 3, arrLen = 2
Output: 4
Explanation: There are 4 differents ways to stay at index 0 after 3 steps.
Right, Left, Stay
Stay, Right, Left
Right, Stay, Left
Stay, Stay, Stay

Example 2:

Input: steps = 2, arrLen = 4
Output: 2
Explanation: There are 2 differents ways to stay at index 0 after 2 steps
Right, Left
Stay, Stay

Example 3:

Input: steps = 4, arrLen = 2
Output: 8

 

Constraints:


Solution:

class Solution {
    // (index, curr steps)
    Integer[][] dp = new Integer[501][501];
    int mod = (int) 1e9 + 7;
    
    public int numWays(int steps, int arrLen) {
        helper(0, 0, steps, arrLen);       
        return dp[0][0];
    }
    
    private int helper(int index, int currStep, int steps, int arrLen) {
        if (index == 0 && currStep == steps) {
            return 1;
        }
        if (index < 0 || index >= arrLen) return 0;
        if (dp[index][currStep] != null) return dp[index][currStep];
        if (currStep == steps) return dp[index][currStep] = 0;
        if (index > steps / 2) return dp[index][currStep] = 0;
        int ways = (helper(index + 1, currStep + 1, steps, arrLen) + helper(index, currStep + 1, steps, arrLen)) % mod;
        ways = (ways + helper(index - 1, currStep + 1, steps, arrLen)) % mod;
        return dp[index][currStep] = ways;
    }
}