Sparse Table
(data-structure/sparse-table.hpp)
Required by
Verified with
Code
#pragma once
#include <cassert>
#include <limits>
#include <vector>
using namespace std;
template <typename T>
struct SparseTable {
inline static constexpr T INF = numeric_limits<T>::max() / 2;
int N;
vector<vector<T> > table;
T f(T a, T b) { return min(a, b); }
SparseTable() {}
SparseTable(const vector<T> &v) : N(v.size()) {
int b = 1;
while ((1 << b) <= N) ++b;
table.push_back(v);
for (int i = 1; i < b; i++) {
table.push_back(vector<T>(N, INF));
for (int j = 0; j + (1 << i) <= N; j++) {
table[i][j] = f(table[i - 1][j], table[i - 1][j + (1 << (i - 1))]);
}
}
}
// [l, r)
T query(int l, int r) {
assert(0 <= l and l <= r and r <= N);
if (l == r) return INF;
int b = 31 - __builtin_clz(r - l);
return f(table[b][l], table[b][r - (1 << b)]);
}
};
/**
* @brief Sparse Table
*/
#line 2 "data-structure/sparse-table.hpp"
#include <cassert>
#include <limits>
#include <vector>
using namespace std;
template <typename T>
struct SparseTable {
inline static constexpr T INF = numeric_limits<T>::max() / 2;
int N;
vector<vector<T> > table;
T f(T a, T b) { return min(a, b); }
SparseTable() {}
SparseTable(const vector<T> &v) : N(v.size()) {
int b = 1;
while ((1 << b) <= N) ++b;
table.push_back(v);
for (int i = 1; i < b; i++) {
table.push_back(vector<T>(N, INF));
for (int j = 0; j + (1 << i) <= N; j++) {
table[i][j] = f(table[i - 1][j], table[i - 1][j + (1 << (i - 1))]);
}
}
}
// [l, r)
T query(int l, int r) {
assert(0 <= l and l <= r and r <= N);
if (l == r) return INF;
int b = 31 - __builtin_clz(r - l);
return f(table[b][l], table[b][r - (1 << b)]);
}
};
/**
* @brief Sparse Table
*/
Back to top page