Unobstructed Buildings - Facebook Top Interview Questions


Problem Statement :


You are given a list of integers heights representing building heights. 

A building heights[i] can see the ocean if every building on its right has shorter height. 

Return the building indices where you can see the ocean, in ascending order.

Constraints

0 ≤ n ≤ 100,000 where n is the length of heights

Example 1

Input

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

Output

[2, 4]

Explanation

We can see the ocean in building heights[2] and heights[4].



Example 2

Input

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

Output

[0, 1, 2, 3, 4]

Explanation

We can see the ocean in every building since each building is taller than every other on its right.



Example 3

Input

heights = [1, 1, 1, 1, 1]

Output

[4]

Explanation

We can't see the ocean in any building other than the last one.



Solution :



title-img




                        Solution in C++ :

vector<int> solve(vector<int>& heights) {
    vector<int> ret;
    int maxi = INT_MIN;
    for (int i = heights.size() - 1; i >= 0; i--) {
        if (maxi < heights[i]) {
            maxi = heights[i];
            ret.push_back(i);
        }
    }
    reverse(ret.begin(), ret.end());
    return ret;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int[] solve(int[] heights) {
        int N = heights.length;
        int[] max = new int[N + 1];
        for (int i = N - 1; i >= 0; i--) max[i] = Math.max(max[i + 1], heights[i]);
        ArrayList<Integer> ans = new ArrayList<Integer>();
        for (int i = 0; i < N; i++) {
            if (heights[i] > max[i + 1])
                ans.add(i);
        }
        return convert(ans);
    }

    public int[] convert(ArrayList<Integer> arr) {
        int[] ans = new int[arr.size()];
        for (int i = 0; i < arr.size(); i++) ans[i] = arr.get(i);
        return ans;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, heights):
        ans = []
        highest = -1
        for i in range(len(heights) - 1, -1, -1):
            if heights[i] > highest:
                ans.append(i)
                highest = heights[i]
        return ans[::-1]
                    


View More Similar Problems

Inserting a Node Into a Sorted Doubly Linked List

Given a reference to the head of a doubly-linked list and an integer ,data , create a new DoublyLinkedListNode object having data value data and insert it at the proper location to maintain the sort. Example head refers to the list 1 <-> 2 <-> 4 - > NULL. data = 3 Return a reference to the new list: 1 <-> 2 <-> 4 - > NULL , Function Description Complete the sortedInsert function

View Solution →

Reverse a doubly linked list

This challenge is part of a tutorial track by MyCodeSchool Given the pointer to the head node of a doubly linked list, reverse the order of the nodes in place. That is, change the next and prev pointers of the nodes so that the direction of the list is reversed. Return a reference to the head node of the reversed list. Note: The head node might be NULL to indicate that the list is empty.

View Solution →

Tree: Preorder Traversal

Complete the preorder function in the editor below, which has 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's preorder traversal as a single line of space-separated values. Input Format Our test code passes the root node of a binary tree to the preOrder function. Constraints 1 <= Nodes in the tree <= 500 Output Format Print the tree's

View Solution →

Tree: Postorder Traversal

Complete the postorder function in the editor below. It received 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's postorder traversal as a single line of space-separated values. Input Format Our test code passes the root node of a binary tree to the postorder function. Constraints 1 <= Nodes in the tree <= 500 Output Format Print the

View Solution →

Tree: Inorder Traversal

In this challenge, you are required to implement inorder traversal of a tree. Complete the inorder function in your editor below, which has 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's inorder traversal as a single line of space-separated values. Input Format Our hidden tester code passes the root node of a binary tree to your $inOrder* func

View Solution →

Tree: Height of a Binary Tree

The height of a binary tree is the number of edges between the tree's root and its furthest leaf. For example, the following binary tree is of height : image Function Description Complete the getHeight or height function in the editor. It must return the height of a binary tree as an integer. getHeight or height has the following parameter(s): root: a reference to the root of a binary

View Solution →