2830. Maximize the Profit as the Salesman
You are given an integer
n
representing the number of houses on a number line, numbered from0
ton - 1
.Additionally, you are given a 2D integer array
offers
whereoffers[i] = [starti, endi, goldi]
, indicating thatith
buyer wants to buy all the houses fromstarti
toendi
forgoldi
amount of gold.As a salesman, your goal is to maximize your earnings by strategically selecting and selling houses to buyers.
Return the maximum amount of gold you can earn.
Note that different buyers can’t buy the same house, and some houses may remain unsold.
1 | class Solution { |