记录编号 159223 评测结果 AAAAAAAAAA
题目名称 超牛冠军赛 最终得分 100
用户昵称 GravatarChenyao2333 是否通过 通过
代码语言 C++ 运行时间 0.164 s
提交时间 2015-04-20 13:10:32 内存使用 0.33 MiB
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
typedef long long LL;
const int L_N=2000+10;
int N,id[L_N];
LL f[L_N],cost[L_N];
bool vis[L_N];
int main(){
	//freopen("in.txt","r",stdin);
	freopen("superbull.in","r",stdin);
	freopen("superbull.out","w",stdout);
	scanf("%d",&N);
	for(int i=1;i<=N;i++) scanf("%d",&id[i]);
	
	if(N==1){
		printf("0\n");
		return 0;
	}
	
	for(int i=0;i<=N;i++) f[i]=-1;
	
	LL ans=0;
	f[1]=0;
	for(int t=1;t<=N;t++){
		int mxi=0;
		for(int i=1;i<=N;i++) if(!vis[i] && f[i]>f[mxi]){
			mxi=i;
		}
		ans+=f[mxi];
		vis[mxi]=true;
		for(int i=1;i<=N;i++) if(!vis[i]){
			LL c=id[mxi]^id[i];
			//cost[i]=max(cost[i],c);
			f[i]=max(f[i],+c);
		}
	}
	
	printf("%lld\n",ans);
}