# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
362484 | 2021-02-03T11:03:43 Z | keta_tsimakuridze | XOR Sum (info1cup17_xorsum) | C++14 | 138 ms | 13164 KB |
#include<bits/stdc++.h> #define f first #define s second using namespace std; const int N=4e5+5; int a[N],s[N],n,cnt,c[2],ans,cur,pos[N],f[2][N]; vector< int > v[2]; void Sort(int i){ c[1]=c[0]=0; for(int k=1;k<=n;k++){ int b = ((1<<i)&a[pos[k]]); b=min(b,1); c[b]++; f[b][c[b]]=pos[k]; } cur=0; for(int j=0;j<=1;j++){ for(int k=1;k<=c[j];k++){ cur++; pos[cur]=f[j][k]; } } } main(){ ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0); cin>>n; for(int k=1;k<=n;k++){ cin>>a[k]; pos[k]=k; cnt+=c[(a[k]&1)^1]; c[a[k]&1]++; s[k]=a[k]&1; } if(cnt%2) ans=1; Sort(0); for(int i=1;i<=30;i++){ Sort(i); for(int k=1;k<=n;k++) s[k]+=a[k]&(1ll<<i); cnt=0; int l=n,r=n,l1=n,r1=n; for(int k=1;k<=n;k++){ while(r && s[pos[r]] + s[pos[k]] >= (1<<(i+1)) ) r--; while(l && s[pos[l]] + s[pos[k]] >= (1<<i) ) l--; cnt += r-l; cnt %=4; while( l1&&s[pos[l1]] + s[pos[k]] >=((1<<(i+1))+(1<<i)) ) l1--; cnt+=n-l1; cnt%=4; } int c1=0; for(int k=1;k<=n;k++){ if((2*a[k])&(1<<i)) c1++; } c1%=4; if((c1+(cnt-c1+4)/2)%2==1) ans+=1<<i; } cout<<ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 492 KB | Output is correct |
2 | Correct | 5 ms | 512 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 49 ms | 13164 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 49 ms | 13164 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 492 KB | Output is correct |
2 | Correct | 5 ms | 512 KB | Output is correct |
3 | Correct | 138 ms | 2264 KB | Output is correct |
4 | Correct | 131 ms | 2264 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 492 KB | Output is correct |
2 | Correct | 5 ms | 512 KB | Output is correct |
3 | Runtime error | 49 ms | 13164 KB | Execution killed with signal 11 |
4 | Halted | 0 ms | 0 KB | - |