forked from aditya9125/Implementation-of-Standard-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImplementing max xor subarray.cpp
290 lines (194 loc) · 5 KB
/
Implementing max xor subarray.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;
#include<bits/stdc++.h>
#include<cmath>
#include<cstdlib> //for qsort
#include<cstdio>
#define rep(x,a,b) for(x=a;x<b;x++)
#define reptill(x,a,b) for(x=a;x<=b;x++)
#define scani(x) scanf("%d",&x)
#define scan2i(x,y) scanf("%d %d",&x,&y)
#define scan3i(x,y,z) scanf("%d %d %d",&x,&y,&z)
#define scanfl(x) scanf("%f",&x)
#define scanc(x) scanf("%c",&x)
#define scand(x) scanf("%lf",&x)
#define scanll(x) scanf("%lli",&x)
#define scan2ll(x,y) scanf("%lli %lli",&x,&y)
#define scan3ll(x,y) scanf("%lli %lli %lli",&x,&y,&z);
#define scanl(x) scanf("%ld",&x)
#define scans(x) scanf("%s",x)
#define printi(x) printf("%d\n",x)
#define printl(x) printf("%ld\n",x)
#define printll(x) printf("%lli\n",x)
#define printd(x) printf("%lf\n",x)
#define printfl(x) printf("%f\n",x)
#define printc(x) printf("%c\n",x)
#define prints(x) printf("%s\n",x);
#define sloop(x) loop(i,0,strlen(x)-1)
#define newl cout<<"\n"
#define FILL(A,value) memset(A,value,sizeof(A))
#define whole(x) x.begin(),x.end()
#define pb push_back
#define in insert
#define get(tp_name,x) (get<x>(tp_name)) ///to access tuple(i)
#define umap unordered_map
using namespace std;
#define F first
#define S second
///learning corner
///vector< vector<int> > costs(N, vector<int>(M, 0)); //NxM 2d preinitialized(0) vector
typedef pair<int,int> ii;
typedef vector<ii> vii;
inline bool inc_range(int x,int y,int z) { return ((x>=y)&&(x<=z)); }
inline bool ex_range(int x,int y,int z) { return ((x>y)&&(x<z)); }
inline bool is_either(int x,int y,int z) { return ((x==y)||(x==z)); }
//maths
#define PI acos(-1)
#define INTmax numeric_limits<int>::max()
#define LLmax numeric_limits<ll>::max()
#define ULLmax numeric_limits<ull>::max()
#define INTmin numeric_limits<int>::min()
typedef priority_queue<ii,vector<ii>, greater<ii> > P_Queue; ///priority queue contianing ii (having vector<ii> as underlying container) with greater as functor
/// heapify on the basis of comparisons of ii.first values
template<typename type>
void get_arr(type a[],type n) {for(type i=0;i<n;i++) cin>>a[i];}
template<typename type>
void show_arr(type a[],type n=1) {for(type i=0;i<n;i++) cout<<a[i]<<" ";}
template<typename type>
inline type max3(type a,type b,type c){ return max(max(a,b),c);}
template<typename type>
inline type min3(type a,type b,type c){ return min(a,min(b,c));}
template<typename type>
inline type min4(type a,type b,type c,type d){ return min(a,min3(b,c,d));}
template<typename type>
type fastpow(type a, type b, type c) { type ans=1; while(b != 0){ if(b%2 == 1) ans=(ans*a)%c; a=(a*a)%c; b /= 2; } return ans; }
template<typename type>
type phi(type n){ type result = n; for (type p=2; p*p<=n; ++p) { if (n % p == 0){ while (n % p == 0) n /= p; result -= result / p; } }
if (n > 1) result -= result / n; return result;
}
template<class type>
type ncr(type n,type r)
{ assert(n>=r);
type ans=1,i;
if(n==r) return 1; if(r==1) return n; if(r>(n-r)) r=n-r;
reptill(i,0,r-1) ans=ans*(n-i)/(i+1);
return ans;
}
inline void FAST_IO(){ios_base::sync_with_stdio(false);}
#define SIZE int(2e3)+1
#define MOD
#define debug
#define MAX1
#define MAX2
//#define Online_judge
struct Trie_node
{
//bool is_end=false;
Trie_node* childs[2];
ll value;
Trie_node() ///constructor
{
//is_end=false;
value=0;
childs[0]=nullptr;
childs[1]=nullptr;
}
}*root;
void insrt(Trie_node *tmp,ll item)
{
for(int i=31;i>=0;i--)
{
bool curr_bit=(1<<i) & item;
if(! tmp->childs[curr_bit])
{
tmp->childs[curr_bit]=new Trie_node();
}
tmp=tmp->childs[curr_bit];
}
tmp->value=item;
//tmp->is_end=true;
//cout<<"hello\n";
}
ll query(ll maxwith)
{
Trie_node *tmp=root;
for(int i=31;i>=0;i--)
{
bool curr_bit= maxwith & (1<<i);
if(tmp->childs[!curr_bit])
{
tmp=tmp->childs[!curr_bit];
}
else if(tmp->childs[curr_bit])
tmp=tmp->childs[curr_bit];
}
//if(tmp->is_end)
// assert(tmp!=nullptr);
return maxwith^(tmp->value);
}
ll Mxor(vector<ll> & v)
{
ll maxsofar=0,pxor=0,i=0;
rep(i,0,v.size())
{
pxor=pxor^(v[i]);
insrt(root,pxor);
maxsofar=max(maxsofar,query(pxor));
//cout<<i<<" "<<pxor<<" "<<maxsofar<<endl;
}
return maxsofar;
}
vector< vector<ll> > arr;
int main()
{
FAST_IO();
ifstream cin("ip");
// ofstream cout("op");
ll n,i,m,j;
cin>>n>>m;
root=new Trie_node();
ll val;
//cout<<"Hello\n";
rep(i,0,n)
{
vector<ll> tempv;
rep(j,0,m)
{
cin>>val;
tempv.pb(val);
}
arr.pb(tempv);
}
insrt(root,0);
ll l=0,r=0,maxor=0;
vector<ll> aux(n,0);
rep(l,0,m)
{
//fill(whole(aux),0);
rep(r,l,m)
{
rep(i,0,n)
{
aux[i]=aux[i]^arr[i][r];
}
//cout<<"max xor of \n";
//rep(i,0,n)
//cout<<aux[i]<<" ";
maxor=max(maxor,Mxor(aux));
}
aux.clear();
}
/*
rep(i,0,n)
{
cin>>arr[i];
// cout<<"Hellp\n";
pxor=pxor^(arr[i]);
insrt(root,pxor);
maxsofar=max(maxsofar,query(pxor));
//cout<<i<<" "<<pxor<<" "<<maxsofar<<endl;
}
*/
cout<<maxor<<"\n";
}