Maximum Number of Events That Can Be Attended II

You are given an array of events where events[i] = [startDayi, endDayi, valuei]. The ith event starts at startDayi and ends at endDayi, and if you attend this event, you will receive a value of valuei. You are also given an integer k which represents the maximum number of events you can attend.

You can only attend one event at a time. If you choose to attend an event, you must attend the entire event. Note that the end day is inclusive: that is, you cannot attend two events where one of them starts and the other ends on the same day.

Return the maximum sum of values that you can receive by attending events.

 

Example 1:

Input: events = [[1,2,4],[3,4,3],[2,3,1]], k = 2
Output: 7
Explanation: Choose the green events, 0 and 1 (0-indexed) for a total value of 4 + 3 = 7.
Example 2:

Input: events = [[1,2,4],[3,4,3],[2,3,10]], k = 2
Output: 10
Explanation: Choose event 2 for a total value of 10.
Notice that you cannot attend any other event as they overlap, and that you do not have to attend k events.
Example 3:

Input: events = [[1,1,1],[2,2,2],[3,3,3],[4,4,4]], k = 3
Output: 9
Explanation: Although the events do not overlap, you can only attend 3 events. Pick the highest valued three.
 

Constraints:


Solution:

sort events by end time,
dp[i][j] = max score by pick at most j events from first i events
dp[i][j] = max(dp[i][j - 1], dp[i - 1][j])

use binary search to find event with latest end time than i

dp[i][j] = Math.max(dp[m][j - 1] + events[i - 1][2], dp[i][j]);


class Solution {
    public int maxValue(int[][] events, int k) {
        Arrays.sort(events, (a, b) -> Integer.compare(a[1], b[1]));
        int[][] dp = new int[events.length + 1][k + 1];
        for(int i = 1; i <= events.length; i++) {
            for(int j = 1; j <= k; j++) {
                dp[i][j] = Math.max(dp[i][j - 1], dp[i - 1][j]);
                int m = binearySearch(events, events[i - 1][0]);
                dp[i][j] = Math.max(dp[m][j - 1] + events[i - 1][2], dp[i][j]);
            }
        }
        
        return dp[events.length][k];
    }
    
    private int binearySearch(int[][] events, int key) {
        int l = 0, r = events.length - 1;
        while(l <= r) {
            int m = (r - l) / 2 + l;
            if(events[m][1] >= key) {
                r = m - 1;
            } else {
                l = m + 1;
            }
        }
        
        return l;
    }
}