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
| #include <bits/stdc++.h> using namespace std; const int N = 1e5 + 500, inf = 2000000005; int n, rt, val[N], siz[N], rd[N], cnt, sons[N][2], num[N]; void pushup (int x) { siz[x] = siz[sons[x][0]] + siz[sons[x][1]] + num[x]; return ; } void rotate (int &x, int d) { int t = sons[x][d ^ 1]; sons[x][d ^ 1] = sons[t][d]; sons[t][d] = x; pushup (x); pushup (t); x = t; return ; } void del (int &p, int x) { if (!p) return ; if (x < val[p]) del (sons[p][0], x); else if (x > val[p]) del (sons[p][1], x); else { if (!sons[p][0] && !sons[p][1]) { num[p] --; siz[p] --; if (num[p] == 0) p = 0; } else if (sons[p][0] && !sons[p][1]) { rotate (p, 1); del (sons[p][1], x); } else if (!sons[p][0] && sons[p][1]) { rotate (p, 0); del (sons[p][0], x); } else if (sons[p][0] && sons[p][1]) { int d = (rd[sons[p][0]] > rd[sons[p][1]]); rotate (p, d); del (sons[p][d], x); } } pushup (p); return ; } void ins (int &p, int x) { if (!p) { p = ++ cnt; siz[p] = num[p] = 1; val[p] = x; rd[p] = rand (); return ; } if (val[p] == x) { num[p] ++; siz[p] ++; return ; } int d = (x > val[p]); ins (sons[p][d], x); if (rd[p] < rd[sons[p][d]]) rotate (p, d ^ 1); pushup (p); return ; } int ranks (int p, int x) { if (!p) return 0; if (x == val[p]) return siz[sons[p][0]] + 1; if (val[p] < x) return siz[sons[p][0]] + num[p] + ranks (sons[p][1], x); if (val[p] > x) return ranks (sons[p][0], x); } int find (int p, int x) { if (!p) return 0; if (x <= siz[sons[p][0]]) return find (sons[p][0], x); else if (x > siz[sons[p][0]] + num[p]) return find (sons[p][1], x - siz[sons[p][0]] - num[p]); else return val[p]; } int pre (int p, int x) { if (!p) return -inf; if (val[p] >= x) return pre (sons[p][0], x); else return max (val[p], pre (sons[p][1], x)); } int suc (int p, int x) { if (!p) return inf; if (val[p] <= x) return suc (sons[p][1], x); else return min (val[p], suc (sons[p][0], x)); } int main () { scanf ("%d", &n); for (int i = 1; i <= n; i ++) { int op, x; scanf ("%d%d", &op, &x); if (op == 1) ins (rt, x); else if (op == 2) del (rt, x); else if (op == 3) printf ("%d\n", ranks (rt, x)); else if (op == 4) printf ("%d\n", find (rt, x)); else if (op == 5) printf ("%d\n", pre (rt, x)); else if (op == 6) printf ("%d\n", suc (rt, x)); } return 0; }
|