Блог пользователя Jason4L

Автор Jason4L, история, 11 дней назад, По-английски

Did you know that the minimum XOR pair of an array can be found by sorting the array, then checking the XOR of adjacent elements.

Can anyone prove why?

  • Проголосовать: нравится
  • +25
  • Проголосовать: не нравится

»
11 дней назад, # |
  Проголосовать: нравится -21 Проголосовать: не нравится

That is because the difference in the set bits in the adjacent elements in the sorted array is the minimum. For Example: elements may be 1000, 1001 or 1010 in binary form.

If you consider adjacent elements like 0111 and 1000(again binary form), obviously they won't contribute anything to the minimum, but most likely the element next to 1000 ahead of it in the sorted array will differ in less number of set bits, which may contribute to the minimum. The same analogy goes for elements behind 0111 in the sorted array.

In this way, we can get the minimum xor of any pair, which would obviously have least difference in number of set bits.

»
11 дней назад, # |
Rev. 2   Проголосовать: нравится +8 Проголосовать: не нравится

Consider a greedy algorithm on a 0-1 Trie.

»
11 дней назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится
»
11 дней назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Let's look at all possible pairs of elements in the array. The minimum XOR is achieved in one of those pairs where the length of the common prefix in the bit representation is the longest. This is because it corresponds to the maximum prefix of zeros at the beginning of the XOR. Hence, the minimum XOR is achieved in one of such pairs. Now, notice that for any such pair, it is true that its elements are consecutive in the sorted array because the elements have the form $$$prefix0 \dots$$$ and $$$prefix1 \dots$$$ If there were at least one more element $$$a_i$$$ between them, the common prefix of $$$a_i$$$ with one of the elements of the pair would be greater than the prefix of the pair. $$$(a_i = prefix0\dots\ or\ prefix1\dots)$$$ But we initially considered pairs with the longest matching bit prefix. Contradiction!

»
11 дней назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

does anyone has list of problems like this where you can learn new XOR properties , such as state above.

»
11 дней назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

https://atcoder.jp/contests/abc308/tasks/abc308_g

you can go through the editorial of this problem

»
11 дней назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I've understood it from the above comments now. Cheers

»
11 дней назад, # |
  Проголосовать: нравится +4 Проголосовать: не нравится

Similar approach can be applied to find a maximal AND pair.