you will be given an array. and q query. q and n all less than 100000.
In every query you will be given a k. how many subarray xor less than k?
** I think it can be solved by persistent trie. but i need another solution.
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
you will be given an array. and q query. q and n all less than 100000.
In every query you will be given a k. how many subarray xor less than k?
** I think it can be solved by persistent trie. but i need another solution.
Название |
---|
Lets rephrase the problem a little bit. Denote by P[i] the XOR of numbers a[1], a[2], ..., a[i]. Now the XOR of subarray [L, R] becomes P[R] XOR P[L — 1] and the problem boils down to finding how many pairs of numbers from a list, when XOR-ed give a number less than K. This problem can be solved in O(NlogN) with the help of the Walsh-Hadamard transform and you can get some insight for the implementation from here: https://csacademy.com/blog/fast-fourier-transform-and-variations-of-it
i only know fast walsh hadamard gives us... all pairs xor/and/or sum. i don't know about this variation. Thanks.