Jason4L's blog

By Jason4L, history, 8 days ago, In English

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?

  • Vote: I like it
  • +25
  • Vote: I do not like it

»
8 days ago, # |
  Vote: I like it -21 Vote: I do not like it

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.

»
8 days ago, # |
Rev. 2   Vote: I like it +8 Vote: I do not like it

Consider a greedy algorithm on a 0-1 Trie.

»
8 days ago, # |
  Vote: I like it +3 Vote: I do not like it
»
8 days ago, # |
  Vote: I like it +1 Vote: I do not like it

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!

»
8 days ago, # |
  Vote: I like it +3 Vote: I do not like it

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

»
8 days ago, # |
  Vote: I like it +3 Vote: I do not like it

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

you can go through the editorial of this problem

»
8 days ago, # |
  Vote: I like it 0 Vote: I do not like it

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

»
8 days ago, # |
  Vote: I like it +4 Vote: I do not like it

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