g0701_0800.s0731_my_calendar_ii.MyCalendarTwo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0701_0800.s0731_my_calendar_ii;
// #Medium #Binary_Search #Design #Ordered_Set #Segment_Tree
// #2022_03_25_Time_27_ms_(97.74%)_Space_54.6_MB_(48.74%)
import java.util.TreeMap;
public class MyCalendarTwo {
private final TreeMap map;
private final TreeMap overlap;
public MyCalendarTwo() {
map = new TreeMap<>();
overlap = new TreeMap<>();
}
public boolean book(int start, int end) {
Integer ol = overlap.lowerKey(end);
if (ol == null || overlap.get(ol) <= start) {
while (true) {
Integer lower = map.lowerKey(end);
if (lower == null || map.get(lower) <= start) {
break;
}
overlap.put(Math.max(start, lower), Math.min(end, map.get(lower)));
start = Math.min(start, lower);
end = Math.max(end, map.get(lower));
map.remove(lower);
}
map.put(start, end);
return true;
}
return false;
}
}
/*
* Your MyCalendarTwo object will be instantiated and called as such:
* MyCalendarTwo obj = new MyCalendarTwo();
* boolean param_1 = obj.book(start,end);
*/