当前位置:网站首页>剑指 Offer II 058:日程表
剑指 Offer II 058:日程表
2022-07-05 05:46:00 【菊头蝙蝠】
剑指 Offer II 058:日程表
题目
题目连接
请实现一个 MyCalendar
类来存放你的日程安排。如果要添加的时间内没有其他安排,则可以存储这个新的日程安排。
MyCalendar
有一个 book(int start, int end)
方法。它意味着在 start 到 end 时间内增加一个日程安排,注意,这里的时间是半开区间,即 [start, end)
, 实数 x
的范围为, start <= x < end
。
当两个日程安排有一些时间上的交叉时(例如两个日程安排都在同一时间内),就会产生重复预订。
每次调用 MyCalendar.book
方法时,如果可以将日程安排成功添加到日历中而不会导致重复预订,返回 true
。否则,返回 false
并且不要将该日程安排添加到日历中。
请按照以下步骤调用 MyCalendar
类: MyCalendar cal = new MyCalendar();
MyCalendar.book(start, end)
示例:
输入:
["MyCalendar","book","book","book"]
[[],[10,20],[15,25],[20,30]]
输出: [null,true,false,true]
解释:
MyCalendar myCalendar = new MyCalendar();
MyCalendar.book(10, 20); // returns true
MyCalendar.book(15, 25); // returns false ,第二个日程安排不能添加到日历中,因为时间 15 已经被第一个日程安排预定了
MyCalendar.book(20, 30); // returns true ,第三个日程安排可以添加到日历中,因为第一个日程安排并不包含时间 20
解题
方法一:map+二分查找
由于map会自动对 key进行排序,因此直接对左边界排序。
通过二分查找,找到大于等于end,的左边界。
只要使得,上一个的右边界比start小就能插入成功
class MyCalendar {
public:
map<int,int> mp;
MyCalendar() {
}
bool book(int start, int end) {
map<int,int>::iterator it=mp.lower_bound(end);// 返回 key值 大于等于 end 的第一个位置
if(it==mp.begin()||(--it)->second<=start){
mp[start]=end;
return true;
}
return false;
}
};
边栏推荐
- Drawing dynamic 3D circle with pure C language
- Time complexity and space complexity
- Cluster script of data warehouse project
- One question per day 1447 Simplest fraction
- Educational Codeforces Round 116 (Rated for Div. 2) E. Arena
- 2020ccpc Qinhuangdao J - Kingdom's power
- Sword finger offer 09 Implementing queues with two stacks
- 全排列的代码 (递归写法)
- The sum of the unique elements of the daily question
- Sword finger offer 35 Replication of complex linked list
猜你喜欢
Time of process
Brief introduction to tcp/ip protocol stack
YOLOv5-Shufflenetv2
Wazuh開源主機安全解决方案的簡介與使用體驗
Sword finger offer 04 Search in two-dimensional array
剑指 Offer 04. 二维数组中的查找
CF1637E Best Pair
How to adjust bugs in general projects ----- take you through the whole process by hand
Corridor and bridge distribution (csp-s-2021-t1) popular problem solution
[practical skills] how to do a good job in technical training?
随机推荐
Drawing dynamic 3D circle with pure C language
过拟合与正则化
Brief introduction to tcp/ip protocol stack
Educational Codeforces Round 116 (Rated for Div. 2) E. Arena
High precision subtraction
kubeadm系列-00-overview
Collection: programming related websites and books
【Jailhouse 文章】Jailhouse Hypervisor
2022年贵州省职业院校技能大赛中职组网络安全赛项规程
CCPC Weihai 2021m eight hundred and ten thousand nine hundred and seventy-five
Talking about JVM (frequent interview)
PC寄存器
每日一题-无重复字符的最长子串
The number of enclaves
Sword finger offer 53 - ii Missing numbers from 0 to n-1
Support multi-mode polymorphic gbase 8C database continuous innovation and heavy upgrade
Sword finger offer 05 Replace spaces
[jailhouse article] performance measurements for hypervisors on embedded ARM processors
卷积神经网络简介
R语言【数据集的导入导出】