Problem Description
You are given a mountain array mountainArr
, and you need to find the minimum index such that mountainArr.get(index) == target
. If the target does not exist, return -1. You can only access the elements through the MountainArray
interface, which has methods get(k)
and length()
.
Key Insights
- A mountain array has a single peak, with elements strictly increasing up to the peak and then strictly decreasing.
- To efficiently find the target, we can leverage binary search in two phases: first to find the peak, and then to search in both halves of the array.
- Since the mountain array is accessed through an interface, we need to minimize the number of calls to
get()
.
Space and Time Complexity
Time Complexity: O(log n) for finding the peak and O(log n) for searching in the two halves, leading to O(log n) overall.
Space Complexity: O(1), as we are using a constant amount of space.
Solution
The approach consists of two main steps:
- Find the Peak: Use binary search to locate the peak of the mountain array. The peak is the index where the value is greater than its neighbors.
- Search for Target: Perform binary search in both the increasing and decreasing parts of the array to find the target.
Data Structures and Algorithms Used
- Binary Search: For both finding the peak and searching for the target.
- Array: The mountain array is accessed through the provided interface.