729. 我的日程安排表 I https://leetcode.cn/problems/my-calendar-i

731. 我的日程安排表 II https://leetcode.cn/problems/my-calendar-ii

732. 我的日程安排表 III https://leetcode.cn/problems/my-calendar-iii

699. 掉落的方块 https://leetcode.cn/problems/falling-squares

前置知识

阅读本文前,你需要先学习:

线段树作为高级数据结构,对应的题目一般都是困难级别。但是只要了解的线段树结构的使用场景,加上 优化:实现懒更新线段树 中提供的线段树通用模板,我们只需要简单地调用 API,就可以轻松解决这些问题。

729. 我的日程安排表 I

基本思路

解法代码

731. 我的日程安排表 II

基本思路

解法代码

732. 我的日程安排表 III

基本思路

解法代码

699. 掉落的方块

基本思路

解法代码

loading...