Navigation
Home / Bitmasks

Bitmasks

Master bitmask techniques for efficient problem solving

Study Guides (2)

1
Kamikazee112 4 weeks ago

Sparse Table¶ Sparse Table is a data structure, that allows answering range queries. It can answer most range queries in   $O(\log n)$ , but its tru...

2
Kamikazee112 4 weeks ago 2 likes

Binary Exponentiation¶ Binary exponentiation (also known as exponentiation by squaring) is a trick which allows to calculate   $a^n$ , where   $n$ ...