Please read the instructions carefully before starting the exam.
Once you start the exam, the timer will begin, and you cannot pause it.
Ensure that you complete and submit your code within the given time if the timer is enabled.
A warehouse keeps track of its daily shipments using an inventory tracking system. Each day, the number of items in stock is recorded for analysis. Given an array where each element represents the stock count for a specific day, your task is to answer multiple queries efficiently. Each query involves finding the maximum stock count in a specified range of days.
Write a function that takes an array of stock counts and a list of queries. Each query specifies a range of days (inclusive) and requires the maximum stock count in that range.
stocks[]
where 1 ≤ length of stocks ≤ 105
and 0 ≤ stocks[i] ≤ 109
.[L, R]
representing the range L ≤ R
(1-based index).For each query, return the maximum stock count in the given range.
Input:
stocks = [100, 200, 50, 300, 400, 250] queries = [[1, 3], [4, 6], [2, 5]]
Output:
200 400 400
Explanation:
[1, 3]
(100, 200, 50), the maximum stock count is 200
.[4, 6]
(300, 400, 250), the maximum stock count is 400
.[2, 5]
(200, 50, 300, 400), the maximum stock count is 400
.1 ≤ L, R ≤ length of stocks
1 ≤ Number of queries ≤ 104
Handle edge cases like small arrays, single-day ranges, and arrays with uniform values.