# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
633225 | Gromp15 | Abracadabra (CEOI22_abracadabra) | C++17 | 530 ms | 40216 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define ll long long
#define ar array
using namespace std;
struct fenwick {
int n, lg; vector<int> bit;
fenwick(int a) : n(a), lg(__lg(n)), bit(a+1) {}
int pref(int pos) {
pos++;
int ret = 0;
if (pos > n) pos = n;
while (pos) {
ret += bit[pos], pos -= pos&-pos;
}
return ret;
}
int point(int pos) {
return pref(pos) - pref(pos-1);
}
void update(int pos, int x) {
pos++;
while (pos <= n) {
bit[pos] += x, pos += pos&-pos;
}
}
int last_smaller(int x) {
int pos = 0;
for (int i = lg; i >= 0; i--) {
if (pos + (1 << i) <= n && x > bit[pos+(1<<i)]) {
x -= bit[pos+(1<<i)];
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |