动态开点线段树 2022-6-21 12:10 | 270 | 0 | 🎓 理工 动态开点线段树原理 例题 1 统计区间中的整数数目 #define ls(x) tr[x].L #define rs(x) tr[x].R class CountIntervals { static const int N = 8e5 + 5; struct node{ int l, r, cnt = 0; int L = -1, R = -1; … 动态开点线段树数据结构算法模板线段树