#include <iostream> #include <climits> #include <algorithm> #include <functional> #include <vector> #include <stack> #include <map> #include <cmath> #include <tuple> using namespace std; struct Node { long long masa; int ile; Node operator+(const Node& rhs) { return Node{masa+rhs.masa, ile+rhs.ile}; } }; struct Modifier { int m; Node operator() (const Node& node) { return m?Node{0,0}:node; } operator int&() { return m; } }; struct Node2 { Node node; Modifier m; operator Node() { return m(node); } }; vector<Node2> T; vector<int> Am; vector<int> Au; int L; void updateNode(int l) { T[l].node=(Node)T[2*l]+(Node)T[2*l+1]; } void recUpdateNode(int l) { while(l) { updateNode(l); l/=2; } } void add(int l, int r, int x=1) { if (l==r) return; l+=T.size()/2; r+=T.size()/2; T[l].m+=x; Am.push_back(l); while (l/2!=r/2) { if (l%2==0) {T[l+1].m+=x; Am.push_back(l+1);} if (r%2==1) {T[r-1].m+=x; Am.push_back(r-1);} l/=2; r/=2; updateNode(l); Au.push_back(l); updateNode(r); Au.push_back(r); } while (l>1) { l/=2; updateNode(l); Au.push_back(l); } } void clearT() { sort(Au.begin(), Au.end(), greater<int>()); Au.resize(unique(Au.begin(), Au.end())-Au.begin()); sort(Am.begin(), Am.end(), greater<int>()); // Am.resize(unique(Am.begin(), Am.end())-Am.begin()); for (int v:Am) T[v].m-=1; for (int v:Au) updateNode(v); Au.clear(); Am.clear(); } Node eval(int l, int r) { Node resL{0,0}, resR{0,0}; if (l==r) return resL; l+=T.size()/2; r+=T.size()/2; resL=T[l]; while (l/2!=r/2) { if (~l&1) resL=resL+T[l+1]; if (r&1) resR=resR+T[r-1]; l>>=1; r>>=1; resL=T[l].m(resL); resR=T[r].m(resR); } while (l>1) { l>>=1; resL=T[l].m(resL); } return resL+resR; } int findByMasa(long long x) { int l=1; while(l<(int)T.size()/2) { l<<=1; long long masa=((Node)T[l]).masa; if (masa<=x) { x-=masa; l++; } } return l-L; } vector<tuple<int, long long, long long>> A; map<long long, int> M, M2; vector<long long> szproty; int szczupak(long long s, long long k) { int res=0; while (s<k) { long long k2=min(M2.lower_bound(s)->first+1, k); int i2=lower_bound(szproty.begin(), szproty.end(), k2-1)-szproty.begin(); Node e=eval(0, i2); if (k2-s>e.masa) { clearT(); return -1; } int i1=findByMasa(e.masa-(k2-s)); add(i1, i2); Node e2=eval(0, i2); res+=e.ile-e2.ile; s+=e.masa-e2.masa; } clearT(); return res; } int main() { ios::sync_with_stdio(false); int n; cin >> n; for (int i=0; i<n; i++) { long long w; cin >>w; M[w]++; szproty.push_back(w); } M[1000000000000000001LL]++; szproty.push_back(1000000000000000001LL); M2=M; int q; cin >> q; for (int i=0; i<q; i++) { int a; long long s, k=0; cin >> a >> s; if (a==1) cin >> k; A.emplace_back(a, s, k); if (a==2) szproty.push_back(s); } sort(szproty.begin(), szproty.end()); L=1; while (L<=(int)szproty.size()) L*=2; T.resize(2*L); for (int i=0, j=0; i<(int)szproty.size(); i=j){ int k=M[szproty[i]]; while (j<(int)szproty.size() && szproty[i]==szproty[j]) { T[j+L].node.ile=1; T[j+L].node.masa=szproty[j]; T[j+L].m+=(i+k<=j); j++; } M[szproty[i]]+=i; } for (int i=L-1; i>0; i--) updateNode(i); for (auto p:A) { int a; long long s, k; tie(a, s, k)=p; if (a==1) cout << szczupak(s, k) << endl; if (a==2) { int v=L+M[s]++; M2[s]++; T[v].m-=1; recUpdateNode(v/2); } if (a==3) { int v=L+(--M[s]); if (0==--M2[s]) { M2.erase(s); // cout << "ERASE"<< endl; } T[v].m+=1; recUpdateNode(v/2); } } 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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | #include <iostream> #include <climits> #include <algorithm> #include <functional> #include <vector> #include <stack> #include <map> #include <cmath> #include <tuple> using namespace std; struct Node { long long masa; int ile; Node operator+(const Node& rhs) { return Node{masa+rhs.masa, ile+rhs.ile}; } }; struct Modifier { int m; Node operator() (const Node& node) { return m?Node{0,0}:node; } operator int&() { return m; } }; struct Node2 { Node node; Modifier m; operator Node() { return m(node); } }; vector<Node2> T; vector<int> Am; vector<int> Au; int L; void updateNode(int l) { T[l].node=(Node)T[2*l]+(Node)T[2*l+1]; } void recUpdateNode(int l) { while(l) { updateNode(l); l/=2; } } void add(int l, int r, int x=1) { if (l==r) return; l+=T.size()/2; r+=T.size()/2; T[l].m+=x; Am.push_back(l); while (l/2!=r/2) { if (l%2==0) {T[l+1].m+=x; Am.push_back(l+1);} if (r%2==1) {T[r-1].m+=x; Am.push_back(r-1);} l/=2; r/=2; updateNode(l); Au.push_back(l); updateNode(r); Au.push_back(r); } while (l>1) { l/=2; updateNode(l); Au.push_back(l); } } void clearT() { sort(Au.begin(), Au.end(), greater<int>()); Au.resize(unique(Au.begin(), Au.end())-Au.begin()); sort(Am.begin(), Am.end(), greater<int>()); // Am.resize(unique(Am.begin(), Am.end())-Am.begin()); for (int v:Am) T[v].m-=1; for (int v:Au) updateNode(v); Au.clear(); Am.clear(); } Node eval(int l, int r) { Node resL{0,0}, resR{0,0}; if (l==r) return resL; l+=T.size()/2; r+=T.size()/2; resL=T[l]; while (l/2!=r/2) { if (~l&1) resL=resL+T[l+1]; if (r&1) resR=resR+T[r-1]; l>>=1; r>>=1; resL=T[l].m(resL); resR=T[r].m(resR); } while (l>1) { l>>=1; resL=T[l].m(resL); } return resL+resR; } int findByMasa(long long x) { int l=1; while(l<(int)T.size()/2) { l<<=1; long long masa=((Node)T[l]).masa; if (masa<=x) { x-=masa; l++; } } return l-L; } vector<tuple<int, long long, long long>> A; map<long long, int> M, M2; vector<long long> szproty; int szczupak(long long s, long long k) { int res=0; while (s<k) { long long k2=min(M2.lower_bound(s)->first+1, k); int i2=lower_bound(szproty.begin(), szproty.end(), k2-1)-szproty.begin(); Node e=eval(0, i2); if (k2-s>e.masa) { clearT(); return -1; } int i1=findByMasa(e.masa-(k2-s)); add(i1, i2); Node e2=eval(0, i2); res+=e.ile-e2.ile; s+=e.masa-e2.masa; } clearT(); return res; } int main() { ios::sync_with_stdio(false); int n; cin >> n; for (int i=0; i<n; i++) { long long w; cin >>w; M[w]++; szproty.push_back(w); } M[1000000000000000001LL]++; szproty.push_back(1000000000000000001LL); M2=M; int q; cin >> q; for (int i=0; i<q; i++) { int a; long long s, k=0; cin >> a >> s; if (a==1) cin >> k; A.emplace_back(a, s, k); if (a==2) szproty.push_back(s); } sort(szproty.begin(), szproty.end()); L=1; while (L<=(int)szproty.size()) L*=2; T.resize(2*L); for (int i=0, j=0; i<(int)szproty.size(); i=j){ int k=M[szproty[i]]; while (j<(int)szproty.size() && szproty[i]==szproty[j]) { T[j+L].node.ile=1; T[j+L].node.masa=szproty[j]; T[j+L].m+=(i+k<=j); j++; } M[szproty[i]]+=i; } for (int i=L-1; i>0; i--) updateNode(i); for (auto p:A) { int a; long long s, k; tie(a, s, k)=p; if (a==1) cout << szczupak(s, k) << endl; if (a==2) { int v=L+M[s]++; M2[s]++; T[v].m-=1; recUpdateNode(v/2); } if (a==3) { int v=L+(--M[s]); if (0==--M2[s]) { M2.erase(s); // cout << "ERASE"<< endl; } T[v].m+=1; recUpdateNode(v/2); } } return 0; } |