码迷,mamicode.com
首页 > 其他好文 > 详细

BJWC2011 元素

时间:2019-01-02 01:16:12      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:reg   oid   bool   printf   include   opera   ==   ace   getch   

传送门

线性基有一个重要的性质:线性基中任意一个非空子集的异或和不为0。

这好像就是给这道题准备的!

立即得到做法:按权值从大到小排序,直接插入线性基计算答案即可。

#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<queue>
#include<cstring>
#define rep(i,a,n) for(register int i = a;i <= n;i++)
#define per(i,n,a) for(register int i = n;i >= a;i--)
#define enter putchar(‘\n‘)
#define pr pair<int,int>
#define mp make_pair
#define fi first
#define sc second
using namespace std;
typedef long long ll;
const int M = 100005;
const int N = 10000005;
 
ll read()
{
   ll ans = 0,op = 1;char ch = getchar();
   while(ch < ‘0‘ || ch > ‘9‘) {if(ch == ‘-‘) op = -1;ch = getchar();}
   while(ch >=‘0‘ && ch <= ‘9‘) ans = ans * 10 + ch - ‘0‘,ch = getchar();
   return ans * op;
}

struct stone
{
   ll num,mag;
   bool operator < (const stone &g) const
   {
      return mag > g.mag;
   }
}s[M];

ll n,ans,p[100];

void insert(ll x,ll v)
{
   per(i,63,0)
   {
      if(!(x >> i)) continue;
      if(!p[i]) {p[i] = x,ans += v;break;}
      x ^= p[i];
   }
}

int main()
{
   n = read();
   rep(i,1,n) s[i].num = read(),s[i].mag = read();
   sort(s+1,s+1+n);
   rep(i,1,n) insert(s[i].num,s[i].mag);
   printf("%lld\n",ans);
   return 0;
}

BJWC2011 元素

标签:reg   oid   bool   printf   include   opera   ==   ace   getch   

原文地址:https://www.cnblogs.com/captain1/p/10206587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!