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
#include <iostream>
#include <set>
using namespace std;

int simulateAttack(multiset<long long>Staw, long long massA, long long massB){
	int res=0;
	long long mass=massA;
	
	while(mass<massB && !Staw.empty()){
		auto it=Staw.lower_bound(mass);
		if(it==Staw.begin())
			return -1;
		--it;
		mass += *it;
		res++;
		Staw.erase(it);
	}
	
	return (mass<massB)?(-1):res;
}

void addFish(multiset<long long>&Staw, long long f){
	Staw.insert(f);
}

void removeFish(multiset<long long>&Staw, long long f){
	Staw.erase(Staw.find(f));
}

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	
	int n;
	cin >> n;
	multiset<long long>Staw;
	for(int i=0;i<n;i++){
		long long x;
		cin >> x;
		Staw.insert(x);
	}
	
	int q;
	cin >> q;
	while(q--){
		int op;
		long long arg1, arg2;
		cin >> op >> arg1;
		
		if(op==1){
			cin >> arg2;
			cout << simulateAttack(Staw, arg1, arg2) << "\n";
		}
		else if(op==2)
			addFish(Staw, arg1);
		else
			removeFish(Staw, arg1);
	}
	
	return 0;
}