比赛 |
NOIP模拟赛1 |
评测结果 |
AAAEEEEEEE |
题目名称 |
异或 |
最终得分 |
30 |
用户昵称 |
shanyu12 |
运行时间 |
6.322 s |
代码语言 |
C++ |
内存使用 |
0.35 MiB |
提交时间 |
2018-02-08 19:50:51 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<queue>
using namespace std;
int n,k;
priority_queue<int> q;
int a[100001];
int main(){
freopen("xorxor.in","r",stdin);
freopen("xorxor.out","w",stdout);
scanf("%d%d",&n,&k);
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
for(int j=1;j<=n;j++)
for(int v=j+1;v<=n;v++)
q.push(a[j] xor a[v]);
for(int i=1;i<=n*(n-1)/2-k;i++)
q.pop();
cout<<q.top();
return 0;
}