1642. Furthest Building You Can Reach - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

Description:
You are given an array of integers heights representing the heights of buildings, along with an integer bricks and an integer ladders. You start at building 0 and move to building 1, 2, and so on. To move from building i to building i+1:

  • If heights[i+1] is less than or equal to heights[i], you can move without using any resources.

  • If heights[i+1] is greater than heights[i], you must either use bricks equal to the difference (heights[i+1] - heights[i]) or use one ladder.

Your goal is to reach as far as possible along the array of buildings. Return the index of the furthest building you can reach by using the given bricks and ladders optimally.

Examples:

  1. Example 1:

    • Input:
      heights = [4, 2, 7, 6, 9, 14, 12], bricks = 5, ladders = 1
    • Output: 4
    • Explanation:
      • From building 0 (4) to 1 (2): No resource is needed because the next building is lower.
      • From building 1 (2) to 2 (7): The climb is 5. Use 5 bricks.
      • From building 2 (7) to 3 (6): No resource is needed.
      • From building 3 (6) to 4 (9): The climb is 3. Use 1 ladder.
      • From building 4 (9) to 5 (14): The climb is 5, but no bricks or ladders remain. Thus, you stop at building 4.
  2. Example 2:

    • Input:
      heights = [4, 12, 2, 7, 3, 18, 20, 3, 19], bricks = 10, ladders = 2
    • Output: 7
    • Explanation:
      The optimal assignment of bricks and ladders allows you to reach building 7 but not building 8.
  3. Example 3:

    • Input:
      heights = [14, 3, 19, 3], bricks = 17, ladders = 0
    • Output: 3
    • Explanation:
      With no ladders available, you must use bricks for all climbs. The available bricks let you reach the last building.

Constraints:

  • (1 \leq \text{heights.length} \leq 10^5)
  • (1 \leq \text{heights}[i] \leq 10^6)
  • (0 \leq \text{bricks} \leq 10^9)
  • (0 \leq \text{ladders} \leq \text{heights.length})

Hints Before the Solution

  1. Optimal Resource Allocation:
    Instead of deciding upfront which climbs should use bricks or ladders, try to postpone the decision. Use bricks by default for each climb, but when you run out of bricks, consider replacing one of the previous brick uses with a ladder if that climb was expensive.

  2. Greedy with Min-Heap:
    A min-heap can help you keep track of all the positive climbs (differences) you have encountered. By always converting the smallest brick expense into a ladder use when necessary, you save bricks for larger climbs.

Approaches

Approach 1: Greedy with Min-Heap (Optimal)

Idea:

  • Iterate Through Buildings:
    As you move from building i to building i+1, calculate the positive difference diff = heights[i+1] - heights[i] (only if the next building is taller).

  • Use a Min-Heap:
    Push each positive difference onto a min-heap. This heap tracks all climbs where you have “spent” bricks.

  • Reallocate Bricks with Ladders:
    If the size of the heap exceeds the number of available ladders, pop the smallest climb from the heap and subtract that value from bricks. This effectively means you are retroactively using a ladder for the smallest climb (saving bricks for larger climbs).

  • Stop When Bricks Run Out:
    If at any point bricks becomes negative, you can’t pay for the required climb, so return the current building index.

Why It Works:

  • The min-heap helps ensure that ladders are used for the largest climbs (by converting the smallest brick expense into a ladder when possible). This minimizes the total bricks spent, allowing you to reach as far as possible.

Code Implementations

Python Implementation

Python3
Python3

. . . .

Java Implementation

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:

    • We iterate through the array once (O(n)), and each push/pop operation on the heap takes O(log n) in the worst case.

    • Overall, the time complexity is O(n log n).

  • Space Complexity:

    • The min-heap stores at most O(n) elements (in the worst case where every transition is a positive climb), so the space complexity is O(n).

Step-by-Step Walkthrough with Visual Example

Consider heights = [4, 2, 7, 6, 9, 14, 12], bricks = 5, and ladders = 1:

  1. From Building 0 to 1:

    • Heights: 4 → 2
    • No climb needed (difference ≤ 0).
  2. From Building 1 to 2:

    • Heights: 2 → 7
    • Difference = 5
    • Push 5 onto the heap. Heap = [5].
    • Heap size (1) ≤ ladders (1) so no bricks are used.
  3. From Building 2 to 3:

    • Heights: 7 → 6
    • No climb needed.
  4. From Building 3 to 4:

    • Heights: 6 → 9
    • Difference = 3
    • Push 3 onto the heap. Heap now = [3, 5].
    • Heap size (2) exceeds ladders (1), so pop the smallest difference (3) and subtract from bricks.
      • Bricks become: 5 - 3 = 2
      • Heap now = [5].
  5. From Building 4 to 5:

    • Heights: 9 → 14
    • Difference = 5
    • Push 5 onto the heap. Heap now = [5, 5].
    • Heap size (2) exceeds ladders (1), so pop the smallest (5) and subtract from bricks.
      • Bricks become: 2 - 5 = -3
      • Since bricks are negative, we cannot proceed.
    • Return the current index: 4.

Common Mistakes

  • Not Handling Non-Climbs:
    Always check if the next building is taller before attempting to use bricks or a ladder.

  • Improper Heap Management:
    Failing to update the heap correctly when the size exceeds the number of available ladders can lead to suboptimal resource allocation.

  • Ignoring Resource Reallocation:
    Using a ladder too early for a small climb may force you to use bricks for a larger climb later. The optimal solution is to retroactively convert the smallest brick spend to a ladder use.

Edge Cases

  • No Climb Needed:
    When the buildings are non-increasing (or equal), no resources are needed, and you can reach the last building.

  • Zero Bricks or Ladders:
    Ensure your solution correctly handles cases where one of the resources is 0.

  • Single Building:
    With only one building, you are already at the destination (return index 0).

  • Alternative Variation:
    What if you were asked to find the minimum resources needed to reach the end rather than the furthest building you can reach with fixed resources? The solution would require a different approach, such as binary search combined with a feasibility check.

  • Related Problems for Further Practice:

    • Jump Game II
    • Minimum Number of Refueling Stops
    • Climbing Stairs
    • Longest Increasing Subsequence
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Motivational strategies to maintain consistency in interview prep
Can I follow my interviewer on LinkedIn?
Is LeetCode enough for Google?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;