We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e8a1f commit b363e4fCopy full SHA for b363e4f
tests/library_checker_aizu_tests/data_structures/kth_smallest_wavelet_matrix.test.cpp
@@ -6,12 +6,12 @@ int main() {
6
cin.tie(0)->sync_with_stdio(0);
7
int n, q;
8
cin >> n >> q;
9
- vector<ull> a(n);
+ vector<ll> a(n);
10
for (int i = 0; i < n; i++) {
11
cin >> a[i];
12
a[i] <<= 23;
13
}
14
- wavelet_matrix wm(a, 1'000'000'000LL << 23);
+ wavelet_matrix wm(a, 30 + 23);
15
while (q--) {
16
int l, r, k;
17
cin >> l >> r >> k;
0 commit comments