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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
// while (clock()<=69*CLOCKS_PER_SEC)
// #pragma comment(linker, "/stack:200000000")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("Ofast")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
// #pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

#define pb push_back
#define SZ(x) ((int)(x).size())
#define ALL(x) x.begin(),x.end()
#define all(x) x.begin(),x.end()
#define fi first
#define se second
#define _upgrade ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define erase_duplicates(x) sort(all(x)); (x).resize(distance((x).begin(), unique(all(x))));


using namespace std;
using namespace __gnu_pbds;
template<typename T>
using ordered_set = tree<
T,
null_type,
less<T>,
rb_tree_tag,
tree_order_statistics_node_update>;

//X.find_by_order(k); - zwraca iterator na k-ty element (numeracja od zerowego)
//X.order_of_key(k); - zwraca liczbę elementów ostro mniejszych niż k

typedef long long LL;
typedef pair<int,int> PII;
typedef pair<LL,LL> PLL;
typedef vector<PII> VPII;
typedef vector<PLL> VPLL;
typedef vector<LL> VLL;
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<char> VC;
typedef long double LD;
typedef pair<LD,LD> PLD;
typedef vector<LD> VLD;
typedef vector<PLD> VPLD;

template<class TH> void _dbg(const char *sdbg, TH h){ cerr<<sdbg<<" = "<<h<<endl; }
template<class TH, class... TA> void _dbg(const char *sdbg, TH h, TA... a) {
  while(*sdbg!=',')cerr<<*sdbg++;
  cerr<<" = "<<h<<", "; _dbg(sdbg+1, a...);
}

#ifdef LOCAL
#define dbg(...) _dbg(#__VA_ARGS__, __VA_ARGS__)
#else
#define dbg(...)
#define cerr if(0)cout
#endif

const int maxn = (1e6)+7;
const int maxk = 20;
const int inf = (1e9)+7;
const LL LLinf = ((LL)1e18)+7LL;
const LD eps = 1e-9;
const LL mod = 1e9+7;

// ***************************** CODE ***************************** //

const int pot = 1<<20;

PLL drze[2 * pot + 7];
LL value[2 * pot + 7];
LL waga[maxn];
VPLL wek;
map<LL, VI> wolne;
map<LL, VI> uzyte;
int n;

PLL operator+(PLL a, PLL b)
{
  return {a.fi + b.fi, a.se + b.se};
}

PLL operator-(PLL a, PLL b)
{
  return {a.fi - b.fi, a.se - b.se};
}

void ustaw(int x, LL res)
{
  x += pot;
  drze[x].se = res;
  drze[x].fi = value[x] * res;
  while(x > 1)
  {
    x /= 2;
    drze[x] = drze[x * 2] + drze[2 * x + 1];
  }
}

PLL suma(int l, int p)
{
  PLL res = {0LL, 0LL};
  l += pot;
  p += pot;
  while(l <= p)
  {
    if(l & 1)
      res = res + drze[l];
    if(!(p&1))
      res = res + drze[p];
    l = (l + 1) / 2;
    p = (p - 1) / 2;
  }
  return res;
}

int schodz(int x, LL val)
{
  while(x < pot)
  {
    if(val <= drze[2 * x + 1].fi)
      x = 2 * x + 1;
    else
    {
      val -= drze[2 * x + 1].fi;
      x = 2 * x;
    }
  }
  dbg(x - pot);
  return x - pot;
}

VI L, P;

int ask(int l, int p, LL s)
{
  L.clear();
  P.clear();
  l += pot;
  p += pot;
  while(l <= p)
  {
    if(l&1)
      L.pb(l);
    if(!(p&1))
      P.pb(p);
    l = (l + 1) / 2;
    p = (p - 1) / 2;
  }
  while(SZ(P))
  {
    L.pb(P.back());
    P.pop_back();
  }
  while(1)
  {
    if(drze[L.back()].fi < s)
    {
      s -= drze[L.back()].fi;
      L.pop_back();
    }
    else
      return schodz(L.back(), s);
  }
}

void wlacz(int x)
{
  assert(drze[x + pot].se == 0);
  ustaw(x, 1);
}

void wylacz(int x)
{
  assert(drze[x + pot].se == 1);
  ustaw(x, 0);
}

void add(LL w)
{
  int x = wolne[w].back();
  wolne[w].pop_back();
  if(SZ(wolne[w]) == 0)
    wolne.erase(w);
  wlacz(x);
  uzyte[w].pb(x);
}

void erase(LL w)
{
  int x = uzyte[w].back();
  uzyte[w].pop_back();
  if(SZ(uzyte[w]) == 0)
    uzyte.erase(w);
  wylacz(x);
  wolne[w].pb(x);
}

VPII przed;
PLL cur;

void daj(LL maxi, LL ile)
{
  while(cur.fi < ile)
  {
    int l = -1;
    int p = pot;
    while(l + 1 < p)
    {
      int sr = (l + p) / 2;
      if(value[sr + pot] < maxi)
        l = sr;
      else
        p = sr;
    }
    if(l == -1)
      return;
    p = l;
    if(SZ(przed) == 0)
      l = 0;
    else
      l = przed.back().se + 1;
    auto tmp = suma(l, p);
    if(tmp.fi + cur.fi < ile)
    {
      if(SZ(przed) == 0)
        return;
      auto elo = suma(przed.back().fi, przed.back().se);
      cur = cur - elo;
      przed.pop_back();
    }
    else
    {
      int ll = ask(l, p, ile - cur.fi);
      tmp = suma(ll, p);
      cur = cur + tmp;
      przed.pb({ll, p});
    }
  }
}

bool pyt(LL s)
{
  while(cur.fi < s)
  {
    auto x = uzyte.lower_bound(cur.fi);
    if(x == uzyte.end())
    {
      daj(cur.fi, s);
      if(cur.fi >= s)
        return 1;
      return 0;
    }
    else
    {
      LL ile = min(s, (x->fi) + 1);
      daj(cur.fi, ile);
      if(cur.fi < ile)
        return 0;
    }
  }
  return 1;
}

LL query(LL c, LL s)
{
  przed.clear();
  cur = {c, 0};
  if(pyt(s))
    return cur.se;
  return -1;
}

void pre()
{
  sort(all(wek));
  for(int i = 0;i < SZ(wek);i++)
  {
    value[i + pot] = wek[i].fi;
    wolne[wek[i].fi].pb(i);
  }
  for(int i = SZ(wek);i < pot;i++)
    value[i + pot] = LLinf;
  for(int i = 1;i <= n;i++)
    add(waga[i]);
}

int t[maxn];
LL w[maxn], k[maxn], s[maxn];

int main()
{
	_upgrade
  cin>>n;
  for(int i = 1;i <= n;i++)
  {
    cin>>waga[i];
    wek.pb({waga[i], i});
  }
  int q;
  cin>>q;
  for(int i = 1;i <= q;i++)
  {
    cin>>t[i];
    if(t[i] == 1)
      cin>>s[i]>>k[i];
    else
      cin>>w[i];
    if(t[i] == 2)
      wek.pb({w[i], i + n});
  }
  pre();
  for(int i = 1;i <= q;i++)
  {
    if(t[i] == 1)
      cout<<query(s[i], k[i])<<"\n";
    if(t[i] == 2)
      add(w[i]);
    if(t[i] == 3)
      erase(w[i]);
  }
	return 0;
}