Skip to content

Latest commit

 

History

History

amount-of-new-area-painted-each-day

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

< Previous                  Next >

Related Topics

[Segment Tree] [Array] [Ordered Set]

Hints

Hint 1 What’s a good way to keep track of intervals that you have already painted?
Hint 2 Create an array of all 1’s, and when you have painted an interval, set the values in that interval to 0.
Hint 3 Using this array, how can you quickly calculate the amount of new area that you paint on a given day?
Hint 4 Calculate the sum of the new array in the interval that you paint.