Skip to content

Commit 52e8a1f

Browse files
committed
fix
1 parent 078f509 commit 52e8a1f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

library/data_structures_[l,r)/seg_tree_uncommon/wavelet_matrix.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
struct wavelet_matrix {
1212
int n;
1313
vector<bit_vec> bv;
14-
wavelet_matrix(vector<ll> a, int lg): n(sz(a)), bv(lg, {{}}) {
14+
wavelet_matrix(vector<ll> a, int lg):
15+
n(sz(a)), bv(lg, {{}}) {
1516
for (int h = sz(bv); h--;) {
1617
vector<bool> b(n);
1718
rep(i, 0, n) b[i] = (~a[i] >> h) & 1;

0 commit comments

Comments
 (0)