摘要: 第3题-塔塔商店 线段树,因为需要返回区间最大值的id,所以对于建树、更新、检索部分需要进行修改 #include<bits/stdc++.h> using namespace std; #define lc p<<1 #define rc p<<1|1 const int N = 1e5 + 5; 阅读全文
posted @ 2024-08-29 16:09 voids5 阅读(13) 评论(0) 推荐(0) 编辑