比赛 |
NOIP模拟赛1 |
评测结果 |
AAAEEEEEEE |
题目名称 |
异或 |
最终得分 |
30 |
用户昵称 |
fall in you |
运行时间 |
0.510 s |
代码语言 |
C++ |
内存使用 |
2.89 MiB |
提交时间 |
2018-02-08 20:17:00 |
显示代码纯文本
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <queue>
#define maxn 500000 + 10
using namespace std;
int n,k;
int a[maxn],vis[maxn];
priority_queue<int> q;
int main()
{
freopen("xorxor.in","r",stdin);
freopen("xorxor.out","w",stdout);
int cnt = 0;
scanf("%d%d",&n,&k);
for(int i = 1; i <= n; i++)
scanf("%d",&a[i]);
for(int i = 1; i <= n - 1; i++)
for(int j = i + 1; j <= n; j++)
{
int x = (a[i] xor a[j]);
if(!vis[x]) q.push(-x),vis[x]++;
else vis[x]++;
}
while(cnt < k)
{
if(cnt + vis[-q.top()] >= k) break;
else cnt += vis[-q.top()],q.pop();
}
printf("%d",-q.top());
return 0;
}