forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_729.java
53 lines (46 loc) · 1.49 KB
/
_729.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.List;
import java.util.TreeMap;
public class _729 {
public static class Solution1 {
/**
* credit: https://discuss.leetcode.com/topic/111205/java-8-liner-treemap
*/
public static class MyCalendar {
TreeMap<Integer, Integer> calendar;
public MyCalendar() {
calendar = new TreeMap<>();
}
public boolean book(int start, int end) {
Integer floorKey = calendar.floorKey(start);
if (floorKey != null && calendar.get(floorKey) > start) {
return false;
}
Integer ceilingKey = calendar.ceilingKey(start);
if (ceilingKey != null && ceilingKey < end) {
return false;
}
calendar.put(start, end);
return true;
}
}
}
public static class Solution2 {
public class MyCalendar {
List<int[]> calendar;
MyCalendar() {
calendar = new ArrayList();
}
public boolean book(int start, int end) {
for (int[] event : calendar) {
if (event[0] < end && start < event[1]) {
return false;
}
}
calendar.add(new int[]{start, end});
return true;
}
}
}
}