Skip to content

Commit b363e4f

Browse files
committed
fix
1 parent 52e8a1f commit b363e4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/library_checker_aizu_tests/data_structures/kth_smallest_wavelet_matrix.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, q;
88
cin >> n >> q;
9-
vector<ull> a(n);
9+
vector<ll> a(n);
1010
for (int i = 0; i < n; i++) {
1111
cin >> a[i];
1212
a[i] <<= 23;
1313
}
14-
wavelet_matrix wm(a, 1'000'000'000LL << 23);
14+
wavelet_matrix wm(a, 30 + 23);
1515
while (q--) {
1616
int l, r, k;
1717
cin >> l >> r >> k;

0 commit comments

Comments
 (0)