Skip to content

Latest commit

 

History

History

average-height-of-buildings-in-each-segment

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

< Previous                  Next >

Related Topics

[Greedy] [Array] [Sorting] [Heap (Priority Queue)]

Hints

Hint 1 Try sorting the start and end points of each building.
Hint 2 The naive solution is to go through each position on the street and keep track of the sum of all the buildings at that position and the number of buildings at that position.
Hint 3 How could we optimize that solution to pass?
Hint 4 We don't need to go through every position, just the ones where a building starts or a building ends.