Skip to content

Instantly share code, notes, and snippets.

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<int S_SZ>
class vEBTree {
public:
vEBTree(int m) : m_(m), M_(1ll << m_), min_(M_), max_(-1), tree_(0) {