DAYS
HOUR
MINS
SEC
Error
Given an array of N integers Arr1, Arr2, ….ArrN, count number of subarrays of Arr which are strictly increasing.
A subarray Arr[i, j] is the array where 1 <= i < j <= N is a sequence of integers of Arri, Arri+1, ….Arrj. A subarray Arr[i, j] is strictly increasing if Arri < Arri+1 < Arri+2 < ……. < Arrj.
Example 1:
Input:
N = 6
Arr[] = {1, 3, 3, 2, 3, 5}
Output: 4
Explanation:
(1,3), (2, 3), (3, 5) and (2, 3, 5)
are the only increasing subarrays.
Example 2:
Input:
N = 2
Arr[] = {1 5}
Output: 1
Explanation:(1, 5) is the only increasing
subarray.
Your Task:
You don't need to read input or print anything. Your task is to complete the function countIncreasing() which takes the array of integers arr[] and n as parameters and returns a integer denoting the answer.
Expected Time Complexity: O(N)
Expected Auxiliary Space: O(1)
Constraints:
1 <= N <= 107
1 <= Arri <= 107
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes