# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
795908 | erray | Two Currencies (JOI23_currencies) | C++17 | 340 ms | 47136 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.
// author: erray
#include <bits/stdc++.h>
#ifdef DEBUG
#include "debug.h"
#else
#define debug(...) void(37)
#endif
using namespace std;
template<typename T, typename F = function<T(const T&, const T&)>>
struct SparseTable {
vector<vector<T>> a;
int n;
F op;
SparseTable() { }
SparseTable(vector<T> _a, F _op) : op(_op) {
n = int(_a.size());
int lg = 32 - __builtin_clz(n);
a.resize(lg);
a[0] = _a;
for (int j = 1; j < lg; ++j) {
int size = n - (1 << j) + 1;
a[j].resize(size);
for (int i = 0; i < size; ++i) {
a[j][i] = op(a[j - 1][i], a[j - 1][i + ((1 << (j - 1)))]);
}
}
}
# | 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... |