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

int n, q;
char sto_procent[300'005]; //-1 (nie wiadomo), 0 (nie ma), 1 (jest)
set <int> wys;

int elementy;
int dostawy;

void dodaj() {

    int res1, res2;
    cin >> res1 >> res2;
    dostawy++;
    elementy+=2;

    for (const auto& x : wys) {
        if (x == res1) elementy--;
        if (x == res2) elementy--;
    }
    wys.insert(res1);
    wys.insert(res2);

    if (res1 == res2) {
        sto_procent[res1] = 1;

    } else { 
        
        if (sto_procent[res1] == 1) {
            sto_procent[res2] = 1;
        }
        else if (sto_procent[res2] == 1) {
            sto_procent[res1] = 1;
        }
        else if (dostawy == elementy) {

            for (const auto& x : wys) {
                sto_procent[x] = 1;
            }
        }
        else {
            for (const auto& x : wys) {
                sto_procent[x] = -1;
            }
        }
    }
}

void usun() {

    int res;
    cin >> res;
    dostawy--;
    sto_procent[res] = 0;
}

void stwierdz() {
    
    int res;
    cin >> res;
    if (sto_procent[res] == 1) cout << '1';
    else if (sto_procent[res] == 0) cout << '0';
    else if (sto_procent[res] == -1) cout << '?';
}


int main() {
    ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);

    cin >> n >> q;

    while (q--) {

        char req;
        cin >> req;

        if (req == '+') dodaj();
        else if (req == '-') usun();
        else stwierdz();
    }

    return 0;
}