摘要: 线段树基础 单点修改: #include<bits/stdc++.h> using namespace std; void modify(int x,int l,int r,int pos) { if(l == r) { /*modify*/ return; } pushdown(x); int m 阅读全文
posted @ 2022-05-03 16:07 Daniel2020 阅读(23) 评论(0) 推荐(0)