Hello Everyone,
Give an array arr[] of N integers and another integer k ≤ N. The task is to find the maximum element of every sub-array of size k.
Examples:
Input: arr[] = {9, 7, 2, 4, 6, 8, 2, 1, 5} k = 3 Output: 9 7 6 8 8 8 5 Explanation: Window 1: {9, 7, 2}, max = 9 Window 2: {7, 2, 4}, max = 7 Window 3: {2, 4, 6}, max = 6 Window 4: {4, 6, 8}, max = 8 Window 5: {6, 8, 2}, max = 8 Window 6: {8, 2, 1}, max = 8 Window 7: {2, 1, 5}, max = 5 Input: arr[] = {6, 7, 5, 2, 1, 7, 2, 1, 10} k = 2 Output: 7 7 5 2 7 7 2 10 Explanation: Window 1: {6, 7}, max = 7 Window 2: {7, 5}, max = 7 Window 3: {5, 2}, max = 5 Window 4: {2, 1}, max = 2 Window 5: {1, 7}, max = 7 Window 6: {7, 2}, max = 7 Window 7: {2, 1}, max = 2 Window 8: {1, 10}, max = 10
Approach:
For every index calculate the index upto which the current element is maximum when the subarray starts from this index, i.e For every index i an index j ≥ i such that max(a[i], a[i + 1], … a[j]) = a[i]. Lets call it max_upto[i].
Then the maximum element in the sub-array of length k starting from ith index, can be found by checking every index starting from i to i + k – 1 for which max_upto[i] ≥ i + k – 1 (last index of that window).
Stack data-structure can be used to store the values in an window, i.e. the last visited or the previous inserted element will be at the top (element with closest index to current element).
Algorithm:
- Create an array max_upto and a stack to store indices. Push 0 in the stack.
- Run a loop from index 1 to index n-1.
- Pop all the indices from the stack, which elements (array[s.top()]) is less than the current element and update max_upto[s.top()] = i – 1 and then insert i in the stack.
- Pop all the indices from the stack and assign max_upto[s.top()] = n – 1.
- Create a variable j = 0
- Run a loop from 0 to n – k, loop counter is i
- Run a nested loop until j < i or max_upto[j] < i + k – 1, increment j in every iteration.
- Print the jth array element.
Implementation:
# Python3 implementation of the approach
# Function to print the maximum for
# every k size sub-array
def
print_max(a, n, k):
# max_upto array stores the index
# upto which the maximum element is a[i]
# i.e. max(a[i], a[i + 1], ... a[max_upto[i]]) = a[i]
max_upto
=
[
0
for
i
in
range
(n)]
# Update max_upto array similar to
# finding next greater element
s
=
[]
s.append(
0
)
for
i
in
range
(
1
,n):
while
(
len
(s) >
0
and
a[s[
-
1
]] < a[i]):
max_upto[s[
-
1
]]
=
i
-
1
del
s[
-
1
]
s.append(i)
while
(
len
(s) >
0
):
max_upto[s[
-
1
]]
=
n
-
1
del
s[
-
1
]
j
=
0
for
i
in
range
(n
-
k
+
1
):
# j < i is to check whether the
# jth element is outside the window
while
(j < i
or
max_upto[j] < i
+
k
-
1
):
j
+
=
1
print
(a[j], end
=
" "
)
print
()
# Driver code
a
=
[
9
,
7
,
2
,
4
,
6
,
8
,
2
,
1
,
5
]
n
=
len
(a)
k
=
3
print_max(a, n, k)
# This code is contributed by mohit kumar
Output:
9 7 6 8 8 8 5
Complexity Analysis:
-
Time Complexity: O(n).
Only two traversal of the array is needed. So Time Complexity is O(n). -
Space Complexity: O(n).
Two extra space of size n is required.