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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#include <bits/stdc++.h>
using namespace std;
#define debug(x) cout << #x << " " << x << endl;

#define int long long // uważaj

const int N = 1e6 + 7;

int szprotki[N];
pair<int, pair<int, int> > zapytanie[N];
vector<int> vek;
map<int, int> mapowanie;

struct Node {
    int ryby;
    int waga;
    int odjete;

    Node() {
        ryby = 0;
        waga = 0;
        odjete = 0;
    }
};

struct sony_drzewo {

    vector<Node> tree;
    vector<int> odwiedzone;
    int base;

    sony_drzewo(int n) {
        base = 1;
        while(base < n + 5) base *= 2;
        tree.resize(2 * base + 5);
    }

    void fix(int v) {
        assert(v < base);
        tree[v].ryby = 0;
        tree[v].waga = 0;
        tree[v].ryby += tree[v * 2].ryby;
        tree[v].waga += tree[v * 2].waga;
        tree[v].ryby += tree[v * 2 + 1].ryby;
        tree[v].waga += tree[v * 2 + 1].waga;
    }

    void insert(int waga, int dod) {
        int v = mapowanie[waga] + base;
        tree[v].ryby += dod;
        tree[v].waga += dod * waga;
        v /= 2;

        while(v) {
            fix(v);
            v /= 2;
        }
    }

    // ile ryb, suma wag
    pair<int, int> query(int v, int l, int r, int ograniczenie, int need) {

        if(tree[v].ryby == 0) return {0, 0};
        if(l > ograniczenie) return {0, 0};

        if(ograniczenie >= r) {
            if(l == r) {
                int potrzebuje = (need + vek[v - base] - 1) / vek[v - base];
                potrzebuje = min(potrzebuje, tree[v].ryby);

                tree[v].odjete += potrzebuje;
                tree[v].ryby -= potrzebuje;
                tree[v].waga = vek[v - base] * tree[v].ryby;
                odwiedzone.push_back(v);

                return {potrzebuje, vek[v - base] * potrzebuje};
            }

            if(tree[v].waga <= need) {
                tree[v].odjete = tree[v].ryby;
                tree[v].ryby = 0;
                int tmp = tree[v].waga;
                tree[v].waga = 0;
                odwiedzone.push_back(v);

                return {tree[v].odjete, tmp};
            }
        }

        int sr = (l + r) / 2;
        pair<int, int> re1 = query(v * 2 + 1, sr + 1, r, ograniczenie, need);
        if(re1.second >= need) {
            fix(v);
            return re1;
        }
        pair<int, int> re2 = query(v * 2, l, sr, ograniczenie, need - re1.second);
        fix(v);
        return {re1.first + re2.first, re1.second + re2.second};
    }

    pair<int, int> query(int v, int need) {
        return query(1, 0, base - 1, v, need);
    }

    void reset() {
        for(auto x : odwiedzone) {
            tree[x].ryby += tree[x].odjete;
            if(x >= base) tree[x].waga += tree[x].odjete * vek[x - base];
            tree[x].odjete = 0;
        }

        for(auto x : odwiedzone) reset_rek(x);
        odwiedzone.clear();
    }

    void reset_rek(int v) {
        if(v >= base) {
            v /= 2;
        }

        while(v) {
            fix(v);
            v /= 2;
        }
    }

    void pisz() {
        for(int i = 1; i < 2 * base; i++) {
            cout << "(" << tree[i].ryby << ", " << tree[i].waga << ", " << tree[i].odjete << ") ";
            if(__builtin_popcount(i + 1) == 1) cout << endl;
        }
    }
};

int32_t main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);

    int n;
    cin >> n;
    for(int i = 0; i < n; i++) {
        cin >> szprotki[i];
        vek.push_back(szprotki[i]);
    }

    int q;
    cin >> q;

    for(int i = 0; i < q; i++) {
        cin >> zapytanie[i].first;
        if(zapytanie[i].first == 1) {
            cin >> zapytanie[i].second.first >> zapytanie[i].second.second;
        } else {
            cin >> zapytanie[i].second.first;
            vek.push_back(zapytanie[i].second.first);
        }
    }

    sort(vek.begin(), vek.end());

    vek.resize(unique(vek.begin(), vek.end()) - vek.begin()); // upper_bound, a nawet i lower

    for(int i = 0; i < vek.size(); i++) {
        mapowanie[vek[i]] = i;
    }

    sony_drzewo tr(vek.size());

    multiset <int> szprotki_w_stawie;

    for(int i = 0; i < n; i++) {
        tr.insert(szprotki[i], 1);
        szprotki_w_stawie.insert(szprotki[i]);
    }

    for(int i = 0; i < q; i++) {
        // debug("huj2");
        // if(i == 4) exit(0);
        if(zapytanie[i].first == 1) {
            // debug("huj3");
            int poc = zapytanie[i].second.first;
            int kon = zapytanie[i].second.second;
            int ans = 0;
            int ostatnio = 0;
            int czy_fail = 0;

            while(poc < kon) {
                // debug(i);
                // tr.pisz();
                auto it = szprotki_w_stawie.lower_bound(poc);
                // if(i == 4) exit(0);

                if(it == szprotki_w_stawie.begin()) {
                    czy_fail = 1;
                    break;
                }
                it --;

                if((*it) == ostatnio) {
                    czy_fail = 1;
                    break;
                }
                ostatnio = (*it);
                it++;

                int need = kon - poc;
                if(it != szprotki_w_stawie.end()) need = min(need, (*it) - poc + 1);

                // debug(need);
                int pozycja = lower_bound(vek.begin(), vek.end(), poc) - vek.begin();
                pair<int, int> ret = tr.query(pozycja - 1, need); // co jak -1?

                ans += ret.first;
                poc += ret.second;
            }

            tr.reset();
            if(czy_fail) cout << -1 << endl;
            else cout << ans << endl;
            // if(i == 3) exit(0);

        } else if(zapytanie[i].first == 2) {
            tr.insert(zapytanie[i].second.first, 1);
            szprotki_w_stawie.insert(zapytanie[i].second.first);
        } else {
            tr.insert(zapytanie[i].second.first, -1);
            szprotki_w_stawie.erase(szprotki_w_stawie.find(zapytanie[i].second.first));
        }
        // debug("huj1");
    }
}