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

multiset <long long> staw;
multiset <long long>::iterator ryba;
int n, q;
queue <long long> zjedzone;

void szczupak_kontratakuje(){
    long long waga, kon, ile;
    cin >> waga >> kon;
    ile = 0;
    while (waga < kon && !staw.empty()){
        ryba = staw.lower_bound(waga);
        if (ryba == staw.begin())
            break;
        --ryba;
        zjedzone.push(*ryba);
        waga+= *ryba;
        staw.erase(ryba);
        ile++;
    }
    if (waga >= kon)
        cout << ile << "\n";
    else
        cout << "-1\n";
    while (!zjedzone.empty()){
        staw.insert(zjedzone.front());
        zjedzone.pop();
    }
    return;
}

void nowy_narybek(){
    long long nowa;
    cin >> nowa;
    staw.insert(nowa);
    return;
}

void plum_plum(){
    long long papa;
    cin >> papa;
    ryba = staw.find(papa);
    if (ryba != staw.end())
        staw.erase(ryba);
    return;
}

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cin >> n;
    long long a;
    for (int i=0; i<n; i++){
        cin >> a;
        staw.insert(a);
    }
    cin >> q;
    int operacja;
    for (int i = 0; i<q; i++){
        cin >> operacja;
        switch(operacja){
            case 1 : szczupak_kontratakuje(); break;
            case 2 : nowy_narybek(); break;
            case 3 : plum_plum();
        }
    }
    return 0;
}