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

int main() {
    int n, q;
    cin >> n >> q;

    unordered_set<int> komputery;
    vector<char> historia;

    for (int i = 0; i < q; ++i) {
        char operacja;
        cin >> operacja;
        if (operacja == '+') {
            int a, b;
            cin >> a >> b;
            if (komputery.find(a) == komputery.end() && komputery.find(b) == komputery.end()) {
                komputery.insert(a);
            } else if (komputery.find(a) != komputery.end() && komputery.find(b) == komputery.end()) {
                komputery.insert(b);
            } else if (komputery.find(a) == komputery.end() && komputery.find(b) != komputery.end()) {
                komputery.insert(a);
            }
        } else if (operacja == '-') {
            int c;
            cin >> c;
            komputery.erase(c);
        } else if (operacja == '?') {
            int d;
            cin >> d;
            if (komputery.find(d) != komputery.end()) {
                historia.push_back('1');
            } else if (komputery.find(d) == komputery.end()) {
                historia.push_back('0');
            } else {
                bool mozliwaDostawa = false;
                for (int j = 1; j <= n; ++j) {
                    if (komputery.find(j) == komputery.end()) {
                        mozliwaDostawa = true;
                        break;
                    }
                }
                historia.push_back('?');
            }
        }
    }

    for (char status : historia) {
        cout << status;
    }
    cout << endl;

    return 0;
}