2024年8月14日

线段树+懒标记 (区间修改,区间查询)

摘要: 原作者:董晓 P3372 【模板】线段树 1 // 结构体版 #include <cstring> #include <iostream> #include <algorithm> using namespace std; #define N 100005 #define LL long long 阅读全文

posted @ 2024-08-14 20:19 swj2529411658 阅读(6) 评论(0) 推荐(0) 编辑

ST表 RMQ问题(区间最大/最小值查询)

摘要: #include <iostream> #include <cstring> #include <algorithm> #include <cmath> using namespace std; int f[100005][22]; int main(){ int n,m; scanf("%d%d" 阅读全文

posted @ 2024-08-14 19:51 swj2529411658 阅读(7) 评论(0) 推荐(0) 编辑

导航