#include <bits/stdc++.h>
const int N = 5e5 + 10;
const int inf = 0x3f3f3f3f;
using namespace std;
using ull = unsigned long long int;
using ll = long long int;
struct vc {
ll x;
ll l, r;
ll lazy;
} tree[N << 2];
ll a[N];
void pushdown(ll p) {
tree[p << 1].x += tree[p].lazy * (tree[p << 1].r - tree[p << 1].l + 1);
tree[p << 1 | 1].x += tree[p].lazy * (tree[p << 1 | 1].r - tree[p << 1 | 1].l + 1);
tree[p << 1].lazy += tree[p].lazy;
tree[p << 1 | 1].lazy += tree[p].lazy;
tree[p].lazy = 0;
}
void build(ll p, ll l, ll r) {
tree[p].l = l, tree[p].r = r, tree[p].lazy = 0;
if (l == r) {
tree[p].x = a[l];
return ;
}
ll mid = l + r >> 1;
build(p << 1, l, mid);
build(p << 1 | 1, mid + 1, r);
tree[p].x = tree[p << 1].x + tree[p << 1 | 1].x;
}
void add(ll p, ll L, ll R, ll c) {
if (L <= tree[p].l && tree[p].r <= R) {
tree[p].x += (tree[p].r - tree[p].l + 1) * c;
tree[p].lazy += c;
return;
}
pushdown(p);
ll mid = (tree[p].l + tree[p].r) >> 1;
if (L <= mid) {
add(p << 1, L, R, c);
}
if (R > mid) {
add(p << 1 | 1, L, R, c);
}
tree[p].x = tree[p << 1].x + tree[p << 1 | 1].x;
}
ll query(ll p, ll L, ll R) {
if (L <= tree[p].l && tree[p].r <= R) {
return tree[p].x;
}
pushdown(p);
ll mid = (tree[p].l + tree[p].r) >> 1;
ll sum = 0;
if (L <= mid) {
sum += query(p << 1, L, R);
}
if (R > mid) {
sum += query(p << 1 | 1, L, R);
}
return sum;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
ll n, q;
cin >> n >> q;
for (ll i = 1; i <= n; i++) {
cin >> a[i];
}
build(1, 1, n);
for (ll i = 1; i <= q; i++) {
ll op;
cin >> op;
if (op == 1) {
// ll L, R, c;
ll k,c;
cin>>k>>c;
// cin >> L >> R >> c;
add(1, k, k, c);
} else {
ll L, R;
cin >> L >> R;
cout << query(1, L, R) << '\n';
}
}
return 0;
}
线段树板子题目,直接CV

京公网安备 11010502036488号