# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
445622 | aris12345678 | XORanges (eJOI19_xoranges) | C++14 | 143 ms | 8356 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>
using namespace std;
const int mxN = 2*1e5+5;
int a[mxN];
template<typename T> struct Fenwick_Tree {
vector<T> bit;
void init(int n) {
bit.assign(mxN, 0);
}
void update(int pos, T val, int n) {
while(pos < mxN) {
bit[pos] ^= val;
pos += (pos&(-pos));
}
}
T query(int pos) {
int ans = 0;
while(pos > 0) {
ans ^= bit[pos];
pos -= (pos&(-pos));
}
return ans;
}
};
Fenwick_Tree<int> bit_even, bit_odd;
int main() {
Compilation message (stderr)
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |