1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
| #include<bits/stdc++.h> using namespace std; typedef long long ll;
template<class Info, class Tag> struct LazySegmentTree{ int n; vector<Info> info; vector<Tag> tag; LazySegmentTree(): n(0){} LazySegmentTree(int n_, Info v_ = Info()){ init(vector<Info>(n_, v_)); } LazySegmentTree(vector<Info> init_){ init(init_); } void init(vector<Info> init_){ n = init_.size(); info.assign(4 * n, Info()); tag.assign(4 * n, Tag()); function<void(int, int, int)> build = [&](int p, int l, int r){ if(r - l == 1){ info[p] = init_[l]; return; } int m = (l + r) / 2; build(2 * p, l, m); build(2 * p + 1, m, r); pull(p); }; build(1, 0, n); } void pull(int p){ info[p] = info[2 * p] + info[2 * p + 1]; } void apply(int p, const Tag &v){ info[p].apply(v); tag[p].apply(v); } void push(int p){ apply(2 * p, tag[p]); apply(2 * p + 1, tag[p]); tag[p] = Tag(); } void modify(int p, int l, int r, int x, const Info &v){ if(r - l == 1){ info[p] = v; return; } int m = (l + r) / 2; push(p); if(x < m){ modify(2 * p, l, m, x, v); } else{ modify(2 * p + 1, m, r, x, v); } pull(p); } void modify(int x, const Info &v){ modify(1, 0, n, x, v); } Info rangeQuery(int p, int l, int r, int x, int y){ if(l >= y || r <= x){ return Info(); } if(l >= x && r <= y){ return info[p]; } int m = (l + r) / 2; push(p); return rangeQuery(2 * p, l, m, x, y) + rangeQuery(2 * p + 1, m, r, x, y); } Info rangeQuery(int l, int r){ return rangeQuery(1, 0, n, l, r); } void rangeApply(int p, int l, int r, int x, int y, const Tag &v){ if(l >= y || r <= x){ return; } if(l >= x && r <= y){ apply(p, v); return; } int m = (l + r) / 2; push(p); rangeApply(2 * p, l, m, x, y, v); rangeApply(2 * p + 1, m, r, x, y, v); pull(p); } void rangeApply(int l, int r, const Tag &v){ return rangeApply(1, 0, n, l, r, v); } };
struct Tag{ ll k = 0; ll b = 0;
void apply(const Tag &t){ if(t.k < 0){ k = t.k; b = t.b; } } };
struct Info{ ll cnt = 0; ll sid = 0; ll sum = 0;
void apply(const Tag &t){ if(t.k < 0){ sum = sid * t.k + cnt * t.b; } } };
Info operator + (const Info &a, const Info &b){ return {a.cnt + b.cnt, a.sid + b.sid, a.sum + b.sum}; }
void solve(){ int n, m, q; cin >> n >> m >> q; vector<int> x(m); for(int i = 0; i < m; i++){ cin >> x[i]; x[i]--; } map<int, int> mp; for(int i = 0; i < m; i++){ cin >> mp[x[i]]; }
LazySegmentTree<Info, Tag> seg(n); for(int i = 0; i < n; i++){ seg.modify(i, {1, i, 0}); } auto work = [&](auto it){ auto nxt = next(it); seg.rangeApply(it->first + 1, nxt->first + 1, {-it->second, (ll)it->second * nxt->first}); }; for(auto it = mp.begin(); it->first < n - 1; it++){ work(it); }
while(q--){ int tp, x, y; cin >> tp >> x >> y;
if(tp == 1){ x--; mp[x] = y; auto it = mp.find(x); work(it); work(prev(it)); } else{ x--; ll ans = seg.rangeQuery(x, y).sum; cout << ans << "\n"; } } }
int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); solve(); return 0; }
|