mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-27 14:36:27 +00:00
parent
7f86f166e2
commit
54ba889e64
130
LibreOJ/10145/10145.cpp
Normal file
130
LibreOJ/10145/10145.cpp
Normal file
@ -0,0 +1,130 @@
|
||||
#include <iostream>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 1e5 + 5;
|
||||
|
||||
int n, min, k, c, ans;
|
||||
char op;
|
||||
|
||||
// Treap
|
||||
|
||||
int root, cnt;
|
||||
|
||||
struct node {
|
||||
int l, r, s, v, k;
|
||||
|
||||
node()
|
||||
: l(0), r(0), s(0), v(0), k(rand()) {}
|
||||
|
||||
node(int _v)
|
||||
: l(0), r(0), s(1), v(_v), k(rand()) {}
|
||||
} tr[N];
|
||||
|
||||
void pushup(int u) {
|
||||
tr[u].s = tr[tr[u].l].s + 1 + tr[tr[u].r].s;
|
||||
}
|
||||
|
||||
std::pair<int, int> split(int p, int k) {
|
||||
if (!p) return std::make_pair(0, 0);
|
||||
|
||||
if (k <= tr[tr[p].l].s) {
|
||||
auto o = split(tr[p].l, k);
|
||||
tr[p].l = o.second;
|
||||
pushup(p);
|
||||
o.second = p;
|
||||
return o;
|
||||
}
|
||||
|
||||
auto o = split(tr[p].r, k - tr[tr[p].l].s - 1);
|
||||
tr[p].r = o.first;
|
||||
pushup(p);
|
||||
o.first = p;
|
||||
|
||||
return o;
|
||||
}
|
||||
|
||||
std::pair<int, int> splitByValue(int p, int v) {
|
||||
if (!p) return std::make_pair(0, 0);
|
||||
|
||||
if (v <= tr[p].v) {
|
||||
auto o = splitByValue(tr[p].l, v);
|
||||
tr[p].l = o.second;
|
||||
pushup(p);
|
||||
o.second = p;
|
||||
return o;
|
||||
}
|
||||
|
||||
auto o = splitByValue(tr[p].r, v);
|
||||
tr[p].r = o.first;
|
||||
pushup(p);
|
||||
o.first = p;
|
||||
|
||||
return o;
|
||||
}
|
||||
|
||||
int merge(int x, int y) {
|
||||
if (!x || !y) return x | y;
|
||||
|
||||
if (tr[x].k > tr[y].k) {
|
||||
tr[x].r = merge(tr[x].r, y);
|
||||
pushup(x);
|
||||
return x;
|
||||
}
|
||||
|
||||
tr[y].l = merge(x, tr[y].l);
|
||||
pushup(y);
|
||||
|
||||
return y;
|
||||
}
|
||||
|
||||
void insert(int v) {
|
||||
auto o = splitByValue(root, v);
|
||||
int p = ++cnt;
|
||||
|
||||
tr[p] = node(v);
|
||||
|
||||
root = merge(o.first, merge(p, o.second));
|
||||
}
|
||||
|
||||
int getKth(int k) {
|
||||
auto x = split(root, k - 1);
|
||||
auto y = split(x.second, 1);
|
||||
|
||||
int r = y.first;
|
||||
|
||||
root = merge(x.first, merge(y.first, y.second));
|
||||
|
||||
return tr[r].v;
|
||||
}
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
|
||||
cin >> n >> min;
|
||||
|
||||
while (n--) {
|
||||
cin >> op >> k;
|
||||
|
||||
if (op == 'I') {
|
||||
if (k >= min) {
|
||||
insert(k - c);
|
||||
}
|
||||
} else if (op == 'A') {
|
||||
c += k;
|
||||
} else if (op == 'S') {
|
||||
c -= k;
|
||||
auto o = splitByValue(root, min - c);
|
||||
root = o.second;
|
||||
ans += tr[o.first].s;
|
||||
} else { // op == 'F'
|
||||
cout << (tr[root].s < k ? -1 : getKth(tr[root].s - k + 1) + c) << endl;
|
||||
}
|
||||
}
|
||||
|
||||
cout << ans << endl;
|
||||
|
||||
return 0;
|
||||
}
|
BIN
LibreOJ/10145/data/cashier.bat
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier.bat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier1.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier1.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier1.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier1.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier10.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier10.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier10.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier10.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier2.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier2.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier2.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier2.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier3.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier3.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier3.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier3.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier4.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier4.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier4.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier4.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier5.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier5.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier5.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier5.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier6.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier6.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier6.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier6.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier7.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier7.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier7.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier7.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier8.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier8.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier8.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier8.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier9.ans
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier9.ans
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/10145/data/cashier9.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/10145/data/cashier9.in
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user