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

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

We can solve the maximum (AND) subsequence of an array by checking the common bits in numbers in O(nlogn).But how can we find a susequence with maximum XOR?

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

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

One thing about maximum AND subsequence:

When you do AND operation with 2 numbers, then it is always true that result ≤ min(firstnum, secondnum). Can be proved easily. So, maximum AND subsequence in array is maximum number in array.