1762. Buildings With an Ocean View


Problem Description

In this problem, we are given an array heights that represents the heights of buildings in a line, with the ocean situated to the right of the last building. The goal is to find out which buildings have an unobstructed view of the ocean. A building has an ocean view if all buildings to its right are shorter than it. We need to return a list of the indices of the buildings that can see the ocean. The list of indices should be sorted in increasing order and needs to be 0-indexed, which means the first building in the line has an index of 0.

Intuition

The solution involves iterating through the list of building heights in reverse (starting from the building farthest from the ocean). As we iterate, we maintain a running maximum height (mx). When the current building's height exceeds this running maximum, it means this building has an ocean view, because there are no taller buildings to its right blocking its view of the ocean.

The steps for the solution are as follows:

  • Initialize an empty list ans to store indices of buildings with ocean views.
  • Set a variable mx to 0 to keep track of the maximum height seen so far as we iterate backwards.
  • Loop through the heights array in reverse order (from last to first):
    • Check if the current building's height is greater than mx, which is the tallest building observed to the right side of the current building.
    • If it is, the current building has an ocean view. We then:
      • Append the index i of this building to the ans list.
      • Update the mx to the new maximum height.
  • Since we filled ans in reverse order, we reverse it once more before returning to give the correct order of indices (from left to right).

By iterating from the end towards the beginning, we ensure that the mx reflects the tallest building's height to the right of the current building. This way, each building is checked against only the relevant taller buildings that could potentially block its ocean view.

Learn more about Stack and Monotonic Stack patterns.

Not Sure What to Study? Take the 2-min Quiz to Find Your Missing Piece:

Which of the following shows the order of node visit in a Breadth-first Search?

Solution Approach

The solution approach can be broken down into the following steps:

  • We initialize an empty list ans that will eventually contain the indices of the buildings with an ocean view.
  • Define a variable mx to keep track of the maximum height encountered as we iterate through the list of buildings in reverse. This is initially set to 0.
  • We start a loop that iterates through the heights array from the last element (furthest from the ocean) towards the first element (closest to the ocean).
  • During each step of the loop, we compare the current building's height to mx. If the current height is greater, it means that this building has an unobstructed ocean view since all buildings to its right are shorter.
  • If the building has an ocean view, we append its index to the ans list and update mx to the current building's height, ensuring that mx always represents the tallest building encountered so far.
  • After iterating through all buildings, we reverse the ans list since we appended indices starting from the building closest to the ocean to get them sorted in the correct (increasing) order. The reasoning for this post-reversal is that indices are collected in decreasing order during the iteration from last to first.

This approach takes advantage of a simple greedy algorithm pattern, which, in this case, means that we always update our 'greedy' choice (mx) to reflect the tallest encountered building so far. The mx effectively "forgets" shorter buildings since they don't impact future comparisons.

In terms of data structures, only a simple list is used to keep track of the indices of buildings with an ocean view. The use of a list also allows us to efficiently reverse its contents at the end of our iteration.

Algorithm Complexity: The time complexity of this solution is O(n), where n is the number of buildings. This is because we have to iterate through all the buildings at least once. The space complexity is also O(n) in the worst case, which occurs when all buildings have an ocean view, and we need a list of the same length as the input to store the indices.

The solution code utilizing this approach looks like this:

1class Solution:
2    def findBuildings(self, heights: List[int]) -> List[int]:
3        ans = []
4        mx = 0
5        for i in range(len(heights) - 1, -1, -1):
6            if heights[i] > mx:
7                ans.append(i)
8                mx = heights[i]
9        return ans[::-1]

This code translates the approach described above into Python, taking advantage of the language's list and loop constructs to efficiently solve the problem.

Discover Your Strengths and Weaknesses: Take Our 2-Minute Quiz to Tailor Your Study Plan:

Which algorithm is best for finding the shortest distance between two points in an unweighted graph?

Example Walkthrough

Let's apply the solution approach to a small example. Consider the following array of building heights:

1heights = [4, 2, 3, 1]

We want to find out which buildings have an unobstructed view of the ocean. Our ocean is to the right, so we need to see which buildings are not blocked by buildings of greater height to their right.

We start by initializing an empty list ans to store indices and a variable mx with a value of 0 to keep track of the maximum height we've seen so far.

Then we iterate backwards through the array:

  1. We start with the last building (index 3), height is 1. mx is 0. Since 1 > 0, we add index 3 to ans and update mx to 1.
  2. Move to the next building (index 2), height is 3. Now, 3 > 1 (current mx), so we add this index (2) to ans and update mx to 3.
  3. The next building's height (index 1) is 2. Because 2 is not greater than 3 (current mx), we don't do anything.
  4. We now reach the first building (index 0), height is 4. Since 4 > 3, we add index 0 to ans and update mx to 4.

After iterating through the array, ans is [0, 2, 3]. However, this is in reverse order, so we reverse it to [3, 2, 0].

Buildings at indices 3, 2, and 0 have an unobstructed view of the ocean. The result is sorted in increasing order, as required by the problem statement.

Solution Implementation

1class Solution:
2    def findBuildings(self, heights: List[int]) -> List[int]:
3        # Initialize an empty list to hold the indices of buildings with an ocean view
4        ocean_view_indices = []
5      
6        # Initialize the maximum height found so far to 0
7        max_height = 0
8      
9        # Iterate from the last building back to the first
10        for i in range(len(heights) - 1, -1, -1):
11            # Compare the current building's height with the max height found so far
12            if heights[i] > max_height:
13                # If the current building is taller, it has an ocean view
14                # So we add its index to our list
15                ocean_view_indices.append(i)
16                # Update the max_height to the current building's height
17                max_height = heights[i]
18      
19        # The resulting list is in reverse order, so we reverse it before returning
20        return ocean_view_indices[::-1]
21
1class Solution {
2    // This method finds the buildings that have an ocean view, given the heights of the buildings.
3    // A building has an ocean view if all buildings to its right have a smaller height.
4    public int[] findBuildings(int[] heights) {
5        // Number of buildings
6        int numberOfBuildings = heights.length;
7      
8        // List to store indices of buildings with an ocean view
9        List<Integer> buildingsWithView = new ArrayList<>();
10      
11        // Keep track of the maximum height seen so far from the right
12        int maxRightHeight = 0;
13      
14        // Iterate buildings from right to left to check for ocean view
15        for (int i = numberOfBuildings - 1; i >= 0; --i) {
16            // If the current building is taller than the max height seen so far to its right,
17            // it has an ocean view
18            if (heights[i] > maxRightHeight) {
19                // Add the current building's index to the list
20                buildingsWithView.add(i);
21                // Update the max height seen so far to the height of the current building
22                maxRightHeight = heights[i];
23            }
24        }
25      
26        // Since we traversed from right to left, reverse the list to maintain the original order
27        Collections.reverse(buildingsWithView);
28      
29        // Convert the List<Integer> to int[] for the final answer
30        return buildingsWithView.stream().mapToInt(Integer::intValue).toArray();
31    }
32}
33
1#include <vector>
2#include <algorithm>
3
4class Solution {
5public:
6    // Function to find the buildings that can see the ocean
7    vector<int> findBuildings(vector<int>& heights) {
8        // The answer vector to store indices of the ocean-view buildings
9        vector<int> oceanViewBuildings;
10        // Variable to keep track of the maximum height observed as we scan from right to left
11        int max_height_so_far = 0;
12      
13        // Iterate over the input 'heights' vector from right to left
14        for (int i = heights.size() - 1; i >= 0; --i) {
15            // If the current building's height is greater than the maximum height observed so far
16            if (heights[i] > max_height_so_far) {
17                // Add the index of this building to the ocean-view list
18                oceanViewBuildings.push_back(i);
19                // Update the maximum height to the height of the current building
20                max_height_so_far = heights[i];
21            }
22        }
23      
24        // Since we added the indices in reverse order, we need to reverse the oceanViewBuildings vector
25        reverse(oceanViewBuildings.begin(), oceanViewBuildings.end());
26      
27        // Return the final list of ocean-view building indices
28        return oceanViewBuildings;
29    }
30};
31
1function findBuildings(heights: number[]): number[] {
2    // Create an array to store the indices of the buildings with an ocean view.
3    const buildingsWithViews: number[] = [];
4    // Initialize a variable to keep track of the maximum height found so far as we iterate from right to left.
5    let maxHeight = 0;
6
7    // Start iterating from the last building towards the first.
8    for (let i = heights.length - 1; i >= 0; --i) {
9        // Check if the current building height is greater than the maximum height found.
10        if (heights[i] > maxHeight) {
11            // If so, add the index of this building to our result array.
12            buildingsWithViews.push(i);
13            // Update maxHeight to the height of the current building.
14            maxHeight = heights[i];
15        }
16    }
17
18    // Since we traversed the buildings from right to left, the resulting array is in reverse order.
19    // Reverse the array to return the indices in the correct order, from left to right.
20    return buildingsWithViews.reverse();
21}
22
Not Sure What to Study? Take the 2-min Quiz:

Which of the following is a good use case for backtracking?

Time and Space Complexity

Time Complexity

The time complexity of the given code can be determined by analyzing the loop that iterates in reverse through the list of heights. Since the loop runs exactly once for each element in the heights array, which has n elements, this gives us a time complexity of O(n) where n is the length of the heights array.

Space Complexity

The space complexity of the code is mainly due to the ans list which stores the indices of buildings with an unobstructed view. In the worst case, all buildings can see the ocean, so the space taken by the ans list can be n in the worst case. Thus, the space complexity is O(n). Also, note that this does not account for the space used to store the input heights as that is not part of the space used by the algorithm itself.

Learn more about how to find time and space complexity quickly using problem constraints.

Fast Track Your Learning with Our Quick Skills Quiz:

A person thinks of a number between 1 and 1000. You may ask any number questions to them, provided that the question can be answered with either "yes" or "no".

What is the minimum number of questions you needed to ask so that you are guaranteed to know the number that the person is thinking?


Recommended Readings


Got a question? Ask the Teaching Assistant anything you don't understand.

Still not clear? Ask in the Forum,  Discord or Submit the part you don't understand to our editors.


TA 👨‍🏫