-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathmax_subset_XOR.cpp
64 lines (52 loc) · 1.36 KB
/
max_subset_XOR.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Given an array of N positive integers. Find an integer denoting the maximum XOR subset value in the given array.
// Time complexity: O(n)
#include<bits/stdc++.h>
#define fl(i,a,b) for(i=a;i<b;i++)
#define fast ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
using namespace std;
typedef long long int ll;
ll maxSubsetXOR(ll set[], ll n)
{
ll index=0, max_pos, max;
for (ll i = 31; i >= 0; i--)
{
max= LONG_MIN;
max_pos= index;
for (ll j = index; j < n; j++)
{
if ( (arr[j] & (1 << i)) != 0 && arr[j] > max )
{
max= arr[j];
max_pos= j;
}
}
if (max == LONG_MIN)
continue;
swap(arr[index], arr[max_pos]);
max_pos = index;
for (ll j=0; j<n; j++)
{
if (j != max_pos && (arr[j] & (1 << i)) != 0)
arr[j] = arr[j] ^ arr[max_pos];
}
index++;
}
ll ans = 0;
for (ll i = 0; i < n; i++)
ans ^= arr[i];
return ans;
}
int main()
{
fast;
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
ll n; cin>>n;
ll arr[n];
for(auto &x: arr)
cin>>x;
cout << maxSubsetXOR(arr, n);
return 0;
}