07 2023 档案
【线段树】【leetcode 729. 我的日程安排表 I】
摘要:class MyCalendar { class Seg { int l; int r; boolean val; Seg left; Seg right; public Seg(int x, int y) { this.l = x; this.r = y; this.val = false; th
【atcoder beginner 308E - MEX】
摘要:前缀和 二分查找 打表枚举 代码如下 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.StreamTokenizer; import