#include <bits/stdc++.h> typedef long long int lli; using namespace std; #define MAX4 10010 #define MAX5 100010 #define MAX6 1000010 #define FOR(n) for (int i = 0; i < n; i++) using vti = vector<int>; using vts = vector<string>; template <typename T> void dbg(T last) { cout << last << "\n"; } template <typename T, typename... args> void dbg(T current, args... next) { cout << current << ' '; dbg(next...); } template <typename T> void getInput(vector<T> &v, int n, int x = 0) { for (int i = x; i < n; i++) { cin >> v[i]; } } //-----------------------------------------------------------------------------------------------// // set<int> tab[MAX6]; set<int> vis; int pa[MAX6]; int tra[MAX6]; int zeros[MAX6]; int numberos[MAX6]; set<int> allOne; set<int> isZero; int cnt; int fin(int x) { if (pa[x] == x) { return x; } pa[x] = fin(pa[x]); return pa[x]; } bool onion(int a, int b) { isZero.erase(a); isZero.erase(b); a = fin(a); b = fin(b); if (a == b) { return true; } if (allOne.count(pa[a])) { allOne.erase(pa[a]); allOne.insert(b); } numberos[b] += numberos[a]; zeros[b] += zeros[a]; pa[a] = b; return false; } void update(int a, int b) { // tab[a].insert(b); // tab[b].insert(a); vis.insert(a); vis.insert(b); // pierwszy problem to co ze zmiana parenta tutaj if (onion(a, b)) { // dbg("all one insert", a, b); allOne.insert(fin(a)); } } void update(int c) { // for (int x : set<int>(tab[c])) { // tab[x].erase(c); // } // pa[c] = c; // tab[c].clear(); // if (tab[c].size() == 1 && tab[*tab[c].begin()].size() == 1) { // vis.erase(*tab[c].begin()); // } isZero.insert(c); zeros[fin(tra[c])]++; int idx = cnt++; tra[c] = idx; numberos[idx] = 1; pa[idx] = idx; } char getAns(int d) { // dbg("get ans", d, fin(d), allOne.count(fin(d)), tab[d].size()); if (!vis.count(d)) { return '0'; } // if (tab[d].empty()) { // return '0'; // } int x = fin(d); if (allOne.count(x)) { return '1'; } if (numberos[x] - 1 == zeros[x]) { return '0'; } // bool spr = true; // for (int x : tab[d]) { // if (!isZero.count(x)) { // spr = false; // } // } // if (spr) { // return '0'; // } return '?'; } void solve() { int n; cin >> n; cnt = n + 1; int q; cin >> q; // dbg(n, q); for (int i = 0; i <= n; i++) { pa[i] = i; tra[i] = i; numberos[i] = 1; } while (q--) { char ch; cin >> ch; // cout << ch << "\n"; if (ch == '+') { int a, b; cin >> a >> b; update(tra[a], tra[b]); } else if (ch == '-') { int c; cin >> c; update(c); } else { int d; cin >> d; cout << getAns(tra[d]); } } cout << "\n"; } int main() { std::ios::sync_with_stdio(false); solve(); return 0; }
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | #include <bits/stdc++.h> typedef long long int lli; using namespace std; #define MAX4 10010 #define MAX5 100010 #define MAX6 1000010 #define FOR(n) for (int i = 0; i < n; i++) using vti = vector<int>; using vts = vector<string>; template <typename T> void dbg(T last) { cout << last << "\n"; } template <typename T, typename... args> void dbg(T current, args... next) { cout << current << ' '; dbg(next...); } template <typename T> void getInput(vector<T> &v, int n, int x = 0) { for (int i = x; i < n; i++) { cin >> v[i]; } } //-----------------------------------------------------------------------------------------------// // set<int> tab[MAX6]; set<int> vis; int pa[MAX6]; int tra[MAX6]; int zeros[MAX6]; int numberos[MAX6]; set<int> allOne; set<int> isZero; int cnt; int fin(int x) { if (pa[x] == x) { return x; } pa[x] = fin(pa[x]); return pa[x]; } bool onion(int a, int b) { isZero.erase(a); isZero.erase(b); a = fin(a); b = fin(b); if (a == b) { return true; } if (allOne.count(pa[a])) { allOne.erase(pa[a]); allOne.insert(b); } numberos[b] += numberos[a]; zeros[b] += zeros[a]; pa[a] = b; return false; } void update(int a, int b) { // tab[a].insert(b); // tab[b].insert(a); vis.insert(a); vis.insert(b); // pierwszy problem to co ze zmiana parenta tutaj if (onion(a, b)) { // dbg("all one insert", a, b); allOne.insert(fin(a)); } } void update(int c) { // for (int x : set<int>(tab[c])) { // tab[x].erase(c); // } // pa[c] = c; // tab[c].clear(); // if (tab[c].size() == 1 && tab[*tab[c].begin()].size() == 1) { // vis.erase(*tab[c].begin()); // } isZero.insert(c); zeros[fin(tra[c])]++; int idx = cnt++; tra[c] = idx; numberos[idx] = 1; pa[idx] = idx; } char getAns(int d) { // dbg("get ans", d, fin(d), allOne.count(fin(d)), tab[d].size()); if (!vis.count(d)) { return '0'; } // if (tab[d].empty()) { // return '0'; // } int x = fin(d); if (allOne.count(x)) { return '1'; } if (numberos[x] - 1 == zeros[x]) { return '0'; } // bool spr = true; // for (int x : tab[d]) { // if (!isZero.count(x)) { // spr = false; // } // } // if (spr) { // return '0'; // } return '?'; } void solve() { int n; cin >> n; cnt = n + 1; int q; cin >> q; // dbg(n, q); for (int i = 0; i <= n; i++) { pa[i] = i; tra[i] = i; numberos[i] = 1; } while (q--) { char ch; cin >> ch; // cout << ch << "\n"; if (ch == '+') { int a, b; cin >> a >> b; update(tra[a], tra[b]); } else if (ch == '-') { int c; cin >> c; update(c); } else { int d; cin >> d; cout << getAns(tra[d]); } } cout << "\n"; } int main() { std::ios::sync_with_stdio(false); solve(); return 0; } |