LeetCode-in-Java

2750. Ways to Split Array Into Good Subarrays

Medium

You are given a binary array nums.

A subarray of an array is good if it contains exactly one element with the value 1.

Return an integer denoting the number of ways to split the array nums into good subarrays. As the number may be too large, return it modulo 109 + 7.

A subarray is a contiguous non-empty sequence of elements within an array.

Example 1:

Input: nums = [0,1,0,0,1]

Output: 3

Explanation: There are 3 ways to split nums into good subarrays:

Example 2:

Input: nums = [0,1,0]

Output: 1

Explanation: There is 1 way to split nums into good subarrays: - [0,1,0]

Constraints:

Solution

public class Solution {
    public int numberOfGoodSubarraySplits(int[] nums) {
        int lastOne = -1;
        int n = nums.length;
        long ans = 1;
        long mod = (long) 1e9 + 7;
        for (int i = 0; i < n; i++) {
            if (nums[i] == 1) {
                if (lastOne != -1) {
                    ans = ans * (i - lastOne) % mod;
                }
                lastOne = i;
            }
        }
        if (lastOne == -1) {
            return 0;
        }
        return (int) ans;
    }
}