码迷,mamicode.com
首页 > 其他好文 > 详细

Segment Tree Beats!(吉司机线段树)

时间:2020-10-31 01:22:28      阅读:19      评论:0      收藏:0      [点我收藏+]

标签:lse   cpp   最大   lld   modify   线段树   司机   最大值   def   

Segment Tree Beats

\(Q1.\)给定长度为\(n\)的序列\(A\),支持以下操作:1、区间取\(\min\);2、区间查询最大值;3、区间求和。

const int N = 1000005;
const int inf = 1<<30;
int n, m, a[N];
#define lc (o << 1)
#define rc (o << 1 | 1)
int ma[N*4], se[N*4], tot[N*4];
ll sum[N*4];
void pushup(int o) {
	sum[o] = sum[lc] + sum[rc];
	ma[o] = std::max(ma[lc], ma[rc]);
	se[o] = std::max(se[lc], se[rc]);
	if (ma[lc] != ma[rc]) chkmax(se[o], std::min(ma[lc], ma[rc]));
	tot[o] = (ma[o] == ma[lc] ? tot[lc] : 0) + (ma[o] == ma[rc] ? tot[rc] : 0);
}
void pushdown(int o) {
	if (ma[lc] > ma[o]) sum[lc] -= 1ll*(ma[lc]-ma[o])*tot[lc], ma[lc] = ma[o];
	if (ma[rc] > ma[o]) sum[rc] -= 1ll*(ma[rc]-ma[o])*tot[rc], ma[rc] = ma[o];
}
void build(int o, int l, int r) {
	if (l == r) { sum[o] = ma[o] = a[l], se[o] = -inf, tot[o] = 1; return; }
	int mid = l+r>>1;
	build(lc, l, mid), build(rc, mid+1, r);
	pushup(o);
}
void modify(int o, int l, int r, int x, int y, int v) {
	if (r < x || y < l) return;
	if (x <= l && r <= y && v > se[o]) {
		if (v >= ma[o]) return;
		sum[o] -= 1ll*(ma[o]-v)*tot[o]; ma[o] = v; return;
	}
	int mid = l+r>>1; pushdown(o);
	modify(lc, l, mid, x, y, v), modify(rc, mid+1, r, x, y, v);
	pushup(o);
}
int qmax(int o, int l, int r, int x, int y) {
	if (r < x || y < l) return -inf;
	if (x <= l && r <= y) return ma[o];
	int mid = l+r>>1; pushdown(o);
	return std::max(qmax(lc, l, mid, x, y), qmax(rc, mid+1, r, x, y));
}
ll qsum(int o, int l, int r, int x, int y) {
	if (r < x || y < l) return 0;
	if (x <= l && r <= y) return sum[o];
	int mid = l+r>>1; pushdown(o);
	return qsum(lc, l, mid, x, y) + qsum(rc, mid+1, r, x, y);
}
int main() {
	for (int T = read(); T; T--) {
		n = read(), m = read();
		rep(i, 1, n) a[i] = read();
		build(1, 1, n);
		while (m--) {
			int ty = read(), x = read(), y = read();
			if (!ty) { int t = read(); modify(1, 1, n, x, y, t); }
			else printf("%lld\n", ty == 1 ? qmax(1, 1, n, x, y) : qsum(1, 1, n, x, y));
		}
	}
	return 0;
}

Segment Tree Beats!(吉司机线段树)

标签:lse   cpp   最大   lld   modify   线段树   司机   最大值   def   

原文地址:https://www.cnblogs.com/ac-evil/p/13885661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!