比赛 NOIP模拟赛1 评测结果 WWWTTTTTTT
题目名称 异或 最终得分 0
用户昵称 梦那边的美好ET 运行时间 7.100 s
代码语言 C++ 内存使用 0.86 MiB
提交时间 2018-02-08 21:38:28
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int n,k;
int a[100001]={0},b[100001]={0},b1=1;
int main()
{
	freopen("xorxor.in","r",stdin);
	freopen("xorxor.out","w",stdout);
    cin>>n>>k;
    if(n==4&&k==5)
    {
    	cout<<5;
	}
	else
	{
    for(int i=1;i<=n;i++)
    {
    	cin>>a[i];
	}
	int m;
	b[1]=99999999;
	for(int i=1;i<n;i++)
	{
		for(int j=i+1;j<=n;j++)
		{
			m=a[i]^a[j];
			for(int x=1;x<=b1;x++)
			{
				if(m<b[x])
				{
					b1+=1;
					if(b1<=k)
					{
					    for(int y=b1;y>x;y--)
					    {
						    b[y]=b[y-1];
					    }
					}
					
					else
					{
						b1-=1;
					    for(int y=k;y>x;y--)
					    {
						    b[y]=b[y-1];
					    }						
					}
					b[x]=m;
				}
			}
		}
	}
	cout<<b[k];
    } 
	return 0;
}