Sunday, 1 November 2015

**Nikitosh and xor

Nikitosh and xor 



Nikitosh the painter has a 1-indexed array A of N elements. He wants to find the maximum value of expression 

(A[l1] ⊕ A[l1 + 1] ⊕ ... ⊕ A[r1]) + (A[l2] ⊕ A[l2 + 1] ⊕ ... ⊕ A[r2]) where 1 ≤ l1 ≤ r1 < l2 ≤ r2 ≤ N.

Here, x ⊕ y means the bitwise XOR of x and y.
Because Nikitosh is a painter and not a mathematician, you need to help him in this task.

Input

The first line contains one integer N, denoting the number of elements in the array.
The second line contains N space-separated integers, denoting A1A2, ... , AN.

Output

Output a single integer denoting the maximum possible value of the given expression.

Constraints

  • 2 ≤ N ≤ 4*105
  • 0 ≤ Ai ≤ 109

Subtasks

  • Subtask 1 (40 points) : 2 ≤ N ≤ 104
  • Subtask 2 (60 points) : Original constraints

Example

Input:
5
1 2 3 1 2

Output:
6

Explanation

Choose (l1r1l2r2) = (1, 2, 3, 3) or (1, 2, 4, 5) or (3, 3, 4, 5).

----------------------------------------------------------------------editorail------------------------------------------------------------------------------

IFFICULTY:

Medium

PREREQUISITES:

Tries, Properties of Bitwise XOR

PROBLEM:

Given is an array A containing numbers in the range 0 to 109. We have to find l1r1l2 and r2 (l1r1<l2r2) such that (A[l1]A[l1+1]A[r1]) + (A[l2]A[l2+1]A[r2]) is maximised. Here xyrefers to Bitwise XOR of x and y.

EXPLANATION:

Subtask 1
Let's start off by thinking of the simplest algorithm that we can. We we will then optimise it step by step by making certain observations.
So, the simplest thing to do is to implement what the problem says. We can run four loops, one each for l1r1l2 and r2. This gives us an O(N4) algorithm which will exceed the time limit for all the subtasks.
How can we optimise this? Let's make an observation. If we know for each i = 1 to N, the maximum value we can get for (A[l1]A[l1+1]A[r1]) and (A[l2]A[l2+1]A[r2]) such that r1i and i<l2, then we can tell the answer in O(N) by simply taking the maximum of the sum of the two terms over all i.
What remains now is to calculate efficiently for each i the max (A[l1]A[l1+1]A[r1]) and (A[l2]A[l2+1]A[r2]) such that r1i and i<l2. Let's call the two terms lbest[i] and rbest[i]respectively. For calculating lbest[i], we iterate from j = i to 1 and find the j such that val = (A[j]A[j+1]A[i]) is maximised. Then, lbest[i] = max(lbest[i1],val). Similarly, we can fill the array rbest.
Calculating the arrays lbest and rbest require O(N2) time. After that, the answer can be computed in O(N). For this subtask, an O(N2) solution will pass.
Subtask 2
We need to somehow speed up the calculation of arrays lbest and rbest. Up till now, we haven't utilised any property of XOR operation in our solution. Let's try to optimise our algorithm using the following property:
Let cumul[i] = (A[1]A[2]A[i]).
Then for some jicumul[j1]cumul[i] = (A[j]A[j+1]A[i]).
The proof behind this is left to the reader as a simple exercise.
We can now say that lbest[i] = max(lbest[i1],val) where val = maximum of (cumul[j1]cumul[i]) for j = 1 to i.
Calculating lbest this way still takes O(N2). For i = 1 to N, we need to somehow optimise finding the index j such that (cumul[j1]cumul[i]) is maximum. If we can do it in O(logA[i]), then we can compute the array lbest(and analogously, rbest too) in O(NlogAmax).
We can use Tries to get the required complexity. We will keep a trie which holds the binary representation of elements in the array cumul. While processing for i from 1 to N, we will first use the trie to get the value which is maximum of (cumul[j1]cumul[i]) for 1ji, and then insert cumul[i] into the trie. This will allow us to calculate lbest in the required complexity. Similarly, we can calculate rbest also.
Inserting into a trie is a standard operation. Let us look at how we do the other operation, i.e., for a value x, finding the value y in the trie such that xy is maximised. Since, the trie stores binary representations of numbers, we first convert x to its binary representation. Then, we can go down the trie and for each bit in the representation of x, we try to find whether bit of opposite value exists or not. It is easy to see why we seek opposite; because 11 and 000 while 01 = 1.

COMPLEXITY:

--------------------------------------------------------editorial----------------------------------------------------------------------------------
  1. #include<iostream>
  2. using namespace std;
  3. #include<bits/stdc++.h>
  4. void calc(int val[])
  5. {
  6. val[0]=1;
  7. for(int i=1;i<=31;i++)
  8. {
  9. val[i]=val[i-1]*2;
  10. }
  11. // cout<<" generation done "<<endl;
  12. return;
  13. }
  14. class node
  15. {
  16. public:
  17. node * ll,*rr;
  18. node()
  19. {
  20. ll=NULL;
  21. rr=NULL;
  22. }
  23. };
  24.  
  25. int join(node * head,int val[],int num)
  26. {
  27. node *var=head;
  28. int ans=0;
  29. for(int i=29;i>=0;i--)
  30. {
  31. //cout<<" insert "<<num<< " i is "<<i<<endl;
  32. if(num&val[i])
  33. {
  34. if(head->rr!=NULL)
  35. {
  36. head=head->rr;
  37. }
  38. else
  39. {
  40. head->rr= new node();
  41. head=head->rr;
  42. }
  43. if(var->ll!=NULL)
  44. {
  45. var=var->ll;
  46. ans+=val[i];
  47. }
  48. else
  49. {
  50. var=var->rr;
  51. }
  52. }
  53. else
  54. {
  55. // cout<<" here "<<endl;
  56. if(head->ll!=NULL)
  57. {
  58. // cout<<" kasdkas"<<endl;
  59. head=head->ll;
  60. }
  61. else
  62. {
  63. // cout<<" creating "<<endl;
  64. head->ll= new node();
  65. head=head->ll;
  66. }
  67. if(var->rr!=NULL)
  68. {
  69. var=var->rr;
  70. ans+=val[i];
  71. }
  72. else
  73. {
  74. var=var->ll;
  75. }
  76. }
  77. }
  78. return ans;
  79. }
  80.  
  81. int main()
  82. {
  83. int n;
  84. cin>>n;
  85. int arr[n+10];
  86. int val[100];
  87. calc(val);
  88. int right[n+10000];
  89. int left[n+1000];
  90. int till_now=0;
  91. for(int i=0;i<n;i++)
  92. {
  93. scanf("%d",&arr[i]);
  94. }
  95. node *head1=new node(),*head2=new node();
  96. till_now=0;
  97. join(head1,val,0);
  98. //cout<<" o inserted "<<endl;
  99. right[0]=arr[0];
  100. for(int i=0;i<n;i++)
  101. {
  102. till_now =till_now ^ arr[i];
  103. int ans=join(head1,val,till_now);
  104. if(i>0)
  105. right[i]=max(right[i-1],ans);
  106. //cout<<" f "<<ans<<endl;
  107. }
  108. // cout<<" fw done "<<endl;
  109. join(head2,val,0);
  110. left[n-1]=arr[n-1];
  111. till_now=0;
  112. for(int i=n-1;i>=0;i--)
  113. {
  114. till_now =till_now ^ arr[i];
  115. int ans=join(head2,val,till_now);
  116. if(i<n-1)
  117. left[i]=max(left[i+1],ans);
  118. // cout<<" b "<<ans<<endl;
  119. }
  120. //cout<<" bw done "<<endl;
  121. int ans=0;
  122. for(int i=0;i<n-1;i++)
  123. {
  124. ans=max(ans,right[i]+left[i+1]);
  125. }
  126. printf("%d\n",ans);
  127. return 0;
  128. }


O(NlogAmax)
--------------------
---------

No comments:

Post a Comment