Skip to content

Commit 56b196e

Browse files
refactor 1353
1 parent eb3f1f0 commit 56b196e

File tree

1 file changed

+2
-43
lines changed

1 file changed

+2
-43
lines changed

src/main/java/com/fishercoder/solutions/_1353.java

Lines changed: 2 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,18 @@
11
package com.fishercoder.solutions;
22

3-
import com.fishercoder.common.utils.CommonUtils;
4-
53
import java.util.Arrays;
6-
import java.util.Collections;
74
import java.util.PriorityQueue;
85

9-
/**
10-
* 1353. Maximum Number of Events That Can Be Attended
11-
*
12-
* Given an array of events where events[i] = [startDayi, endDayi]. Every event i starts at startDayi and ends at endDayi.
13-
* You can attend an event i at any day d where startTimei <= d <= endTimei. Notice that you can only attend one event at any time d.
14-
* Return the maximum number of events you can attend.
15-
*
16-
* Example 1:
17-
* Input: events = [[1,2],[2,3],[3,4]]
18-
* Output: 3
19-
* Explanation: You can attend all the three events.
20-
* One way to attend them all is as shown.
21-
* Attend the first event on day 1.
22-
* Attend the second event on day 2.
23-
* Attend the third event on day 3.
24-
*
25-
* Example 2:
26-
* Input: events= [[1,2],[2,3],[3,4],[1,2]]
27-
* Output: 4
28-
*
29-
* Example 3:
30-
* Input: events = [[1,4],[4,4],[2,2],[3,4],[1,1]]
31-
* Output: 4
32-
*
33-
* Example 4:
34-
* Input: events = [[1,100000]]
35-
* Output: 1
36-
*
37-
* Example 5:
38-
* Input: events = [[1,1],[1,2],[1,3],[1,4],[1,5],[1,6],[1,7]]
39-
* Output: 7
40-
*
41-
* Constraints:
42-
* 1 <= events.length <= 10^5
43-
* events[i].length == 2
44-
* 1 <= events[i][0] <= events[i][1] <= 10^5
45-
* */
466
public class _1353 {
477
public static class Solution1 {
488
/**
499
* Credit: https://leetcode.com/problems/maximum-number-of-events-that-can-be-attended/discuss/510263/JavaC%2B%2BPython-Priority-Queue
50-
*
10+
* <p>
5111
* 1. Sort events by start time, if ties, by end time;
5212
* 2. From day 1 to day 100,000, we add all events that start on this day into a priorityqueue,
5313
* also, we remove the events that closed on this day from the priorityqueue;
5414
* 3. attend the event that ends on this day (earliest, i.e. greedy) and pop it out of the priorityqueue
55-
*
56-
* */
15+
*/
5716
public int maxEvents(int[][] events) {
5817
Arrays.sort(events, (a, b) -> a[0] != b[0] ? a[0] - b[0] : a[1] - b[1]);
5918
PriorityQueue<Integer> heap = new PriorityQueue<>();

0 commit comments

Comments
 (0)