Investable Periods 🐿️
A trading firm predicts the stock prices of a commodity for the next n days. A period of consecutive days is considered investable if the maximum price in the period is max_price, and the minimum price in the period is min_price. Find the number of investable periods in the next n days.
More formally, given an array price of length n, find the number of subarrays in which the maximum element is max_price and the minimum element is min_price.
Note: A subarray is a sequence of consecutive elements of the array.
Complete the function countInvestablePeriods in the editor below.
countInvestablePeriods has the following parameters:
int price[n]: the predicted prices for the nextndaysint max_price: the maximum price of an investable periodint min_price: the minimum price of an investable period
Returns
long integer: the number of investable periods
1Example 1
2Example 2
3Example 3
Constraints
Limits and guarantees your solution can rely on.
1 ≤ n ≤ 10^51 ≤ price[i] ≤ 10^91 ≤ min_price ≤ max_price ≤ 10^9