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
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;

multiset <LL> m;
multiset <LL> ::iterator it;
vector <LL> v;

int main(){
	int n;
	scanf("%d", &n);
	for(int i=0; i<n; i++){
		LL x;
		scanf("%lld", &x);
		m.insert(x);
	}
	int q;
	scanf("%d", &q);
	for(int i=0; i<q; i++){
		int typ;
		LL s, k;
		scanf("%d", &typ);
		if(typ == 1){
			scanf("%lld%lld", &s, &k);
			int licz = 0;
			while(s < k){
				if(m.empty()){
					licz = -1;
					break;
				}
				it = m.lower_bound(s);
				if(*it >= s && it != m.begin()){
					--it;
				}
				if(*it >= s){
					licz = -1;
					break;
				}
				if(it == m.end()){
					--it;
				}
				v.push_back(*it);
				s += *it;
				m.erase(it);
				licz++;
			}
			m.insert(v.begin(), v.end());
			v.clear();
			printf("%d\n",  licz);
		}
		if(typ==2){
			scanf("%lld", &s);
			m.insert(s);
		}
		if(typ==3){
			scanf("%lld", &s);
			m.erase(s);
		}
		
	}
	
	return 0;
}