This approach uses a greedy strategy combined with a max-heap (priority queue) to determine the optimal use of bricks and ladders. The idea is to always use bricks first for the smallest height difference and use ladders for the largest, potentially reserving the ladders for future taller buildings. Whenever we encounter a new jump (difference in height), we add it to the heap, and if the total number of jumps exceeds the available ladders, we use bricks for the smallest jump. If we don’t have enough bricks, we can’t proceed further.
Time Complexity: O(n log n) due to sorting.
Space Complexity: O(n) for storing height differences.
1import heapq
2
3def furthest_building(heights, bricks, ladders):
4 min_heap = []
5 for i in range(len(heights) - 1):
6 diff = heights[i + 1] - heights[i]
7 if diff > 0:
8 heapq.heappush(min_heap, diff)
9 if len(min_heap) > ladders:
10 bricks -= heapq.heappop(min_heap)
11 if bricks < 0:
12 return i
13 return len(heights) - 1
14
15# Sample run
16heights = [4, 2, 7, 6, 9, 14, 12]
17print(furthest_building(heights, 5, 1)) # Output: 4
18
This Python solution efficiently uses a min-heap to optimize the allocation of ladders and bricks. By storing the smallest height differences, it ensures that the smallest climbs are covered by bricks once ladders run out, similar to priority queue usage in other language solutions.
This approach employs binary search to find the furthest building we can reach. The binary search is performed over the indices of the buildings (0 to n-1). For each index midpoint in the search, we check if it's possible to reach that building, given the constraints of available bricks and ladders using a helper function that checks feasibility by simulating resource allocation greedily. The search continually refines the possible maximum index based on resource ability.
Time Complexity: O(n log n) because of binary search with operations similar to heap for each midpoint.
Space Complexity: O(n) to store the min-heap simulation for each search step.
1#include <iostream>
2#include <queue>
3using namespace std;
4
5bool canReach(vector<int>& heights, int bricks, int ladders, int target) {
6 priority_queue<int, vector<int>, greater<int>> minHeap;
7 for (int i = 0; i < target; ++i) {
8 int diff = heights[i + 1] - heights[i];
9 if (diff > 0) {
10 minHeap.push(diff);
11 if (minHeap.size() > ladders) {
12 bricks -= minHeap.top();
13 minHeap.pop();
14 if (bricks < 0) return false;
15 }
16 }
17 }
18 return true;
19}
20
21int furthestBuilding(vector<int>& heights, int bricks, int ladders) {
22 int low = 0, high = heights.size() - 1, result = 0;
23 while (low <= high) {
24 int mid = low + (high - low) / 2;
25 if (canReach(heights, bricks, ladders, mid)) {
26 result = mid;
27 low = mid + 1;
28 } else {
29 high = mid - 1;
30 }
31 }
32 return result;
33}
34
35int main() {
36 vector<int> heights = {4, 12, 2, 7, 3, 18, 20, 3, 19};
37 cout << furthestBuilding(heights, 10, 2) << endl; // Output: 7
38}
39
This C++ solution leverages binary search combined with `canReach`, a helper function that simulates resource allocation using a min-heap strategy. The binary search efficiently homes in on the furthest building index that can be achieved using available resources by confirming feasibility for each midpoint.