You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 数据结构-线段树structSegment_Tree {
voidmodify(int u, int l, int r, int p, int x) {
}
} T;
/*单点修改:T.modify(T.R, 1, n, p, x);区间查询:T.query(T.R, 1, n, l, r);*/