# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
968533 | penguin133 | Index (COCI21_index) | C++17 | 687 ms | 47360 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.
// CPP program for querying in
// wavelet tree Data Structure
#include <bits/stdc++.h>
using namespace std;
#define N 200005
// Given Array
int a[N];
// wavelet tree class
struct wavelet_tree{
int lo, hi;
wavelet_tree *l, *r;
vector<int>b;
wavelet_tree(int *from, int *to, int x, int y){
lo = x, hi = y;
if(lo == hi || from >= to)return;
int mid = (lo + hi)/2;
auto f = [mid](int x){
return x <= mid;
};
b.reserve(to-from+1);
b.push_back(0);
for(auto it = from;it != to;it++){
b.push_back(b.back() + f(*it));
}
auto pivot = stable_partition(from, to, f);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |