HDU3949 XOR
嘟嘟嘟
集训的时候发现自己不会线性基,就打算学一下。
这东西学了挺长时间,其实不是因为难,而是天天上午考试,下午讲题,结果晚上就开始颓了。
今天总算是有大块的时间好好学了一遍。
这里推荐menci大佬的博客:线性基学习笔记
这道题就是求一个集合的第\(k\)小亦或和。
首先线性基的概念、构造方法什么的看上面的blog就好啦。
这里补充一点,只有求第\(k\)小(大)的亦或和的时候才用把每一位独立开来,即必须满足\(p[i] = 2 ^i\)。其他的操作(比如亦或最大值)就不用了。
那么现在我们已经得到了线性基,且满足如果\(p[i]\)存在,就有\(p[i] = 2 ^ i\)。
首先,对于不存在的\(p[i]\),要把他踢出去,因为这一位在计算答案的时候是没有贡献的。
然后如果求第\(k\)小,就把\(p[i]\)从低位到高位存到另一个数组中(去0位);如果是第\(k\)大,就应该从高位到低位存下来。
那么对于\(k\),转换成二进制,如果第\(i\)位为\(0\),就把答案亦或上\(p[i]\)。
大体的流程就是这样。
接下来说一下细节:
1.如果线性基大小小于\(n\),就说明有的数能被其他数亦或得到,也就是说,答案是包含\(0\)的。这时候就要把\(k\)减1。
2.无解条件是\(k > 2^cnt - 1\)。之所以减1,是因为虽然有\(2 ^ cnt\)种可能,但是0是不算的,因此只有\(2 ^cnt - 1\)个数。
#include<cstdio>
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<vector>
#include<stack>
#include<queue>
using namespace std;
#define enter puts("")
#define space putchar(' ')
#define Mem(a, x) memset(a, x, sizeof(a))
#define In inline
typedef long long ll;
typedef double db;
const int INF = 0x3f3f3f3f;
const db eps = 1e-8;
const int maxN = 63;
inline ll read()
{
ll ans = 0;
char ch = getchar(), last = ' ';
while(!isdigit(ch)) {last = ch; ch = getchar();}
while(isdigit(ch)) {ans = (ans << 1) + (ans << 3) + ch - '0'; ch = getchar();}
if(last == '-') ans = -ans;
return ans;
}
inline void write(ll x)
{
if(x < 0) x = -x, putchar('-');
if(x >= 10) write(x / 10);
putchar(x % 10 + '0');
}
int n, m;
ll p[maxN + 5];
In void insert(ll x)
{
for(int i = maxN; i >= 0; --i)
{
if((x >> (ll)i) & 1)
{
if(p[i]) x ^= p[i];
else
{
for(int j = i - 1; j >= 0; --j) if((x >> j) & 1) x ^= p[j];
for(int j = maxN; j > i; --j) if((p[j] >> i) & 1) p[j] ^= x;
p[i] = x; return;
}
}
}
}
ll b[maxN + 5], cnt = 0;
In void change() //第k小,正着存
{
for(int i = 0; i <= maxN; ++i) if(p[i]) b[cnt++] = p[i];
}
In ll query(ll k)
{
if(cnt < n) --k;
if(k > (1LL << cnt) - 1) return -1;
ll ret = 0;
for(int i = 0; i < cnt; ++i)
{
if((k >> i) & 1) ret ^= b[i];
}
return ret;
}
In void init()
{
Mem(p, 0); Mem(b, 0); cnt = 0;
}
int main()
{
int T = read(), cntT = 0;;
while(T--)
{
printf("Case #%d:\n", ++cntT);
init();
n = read(); ll x;
for(int i = 1; i <= n; ++i) x = read(), insert(x);
change();
m = read();
for(int i = 1; i <= m; ++i) x = read(), write(query(x)), enter;
}
return 0;
}
HDU3949 XOR的更多相关文章
- HDU3949 XOR (线性基)
HDU3949 XOR Problem Description XOR is a kind of bit operator, we define that as follow: for two bin ...
- hdu3949 XOR xor高斯消元
XOR Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submiss ...
- 【线性基】hdu3949 XOR
给你n个数,问你将它们取任意多个异或起来以后,所能得到的第K小值? 求出线性基来以后,化成简化线性基,然后把K二进制拆分,第i位是1就取上第i小的简化线性基即可.注意:倘若原本的n个数两两线性无关,也 ...
- [hdu3949]XOR(线性基求xor第k小)
题目大意:求xor所有值的第k小,线性基模板题. #include<cstdio> #include<cstring> #include<algorithm> #i ...
- HDU3949 XOR(线性基第k小)
Problem Description XOR is a kind of bit operator, we define that as follow: for two binary base num ...
- HDU3949:XOR(高斯消元)(线性基)
传送门 题意 给出n个数,任意个数任意数异或构成一个集合,询问第k大个数 分析 这题需要用到线性基,下面是一些资料 1.高斯消元&线性基&Matirx_Tree定理 笔记 2.关于线性 ...
- 【HDU3949】XOR
[题目大意] 给定一个数组,求这些数组通过异或能得到的数中的第k小是多少. 传送门:http://vjudge.net/problem/HDU-3949 [题解] 首先高斯消元求出线性基,然后将k按照 ...
- HDU3949:XOR——题解
http://acm.hdu.edu.cn/showproblem.php?pid=3949 求n个数的异或和第k小. 参考:https://blog.sengxian.com/algorithms/ ...
- HDU3949/AcWing210 XOR (高斯消元求线性基)
求第k小的异或和,用高斯消元求更简单一些. 1 //用高斯消元求线性基 2 #include<bits/stdc++.h> 3 using namespace std; 4 #define ...
随机推荐
- webpack4打包报错:WARNING in configuration The 'mode' option has not been set, webpack will fallback to 'production' for this value. Set 'mode' option to 'development' or 'production' to enable defaults fo
运行命令webpack ./src/main.js ./dist/murenziwei.js后,目录上神马动静都没有,你以为在dist文件夹上会有murenziwei.js吗?毛都没有 警告和错误倒是 ...
- Spark新手入门——1.Scala环境准备
主要包括以下三部分,本文为第一部分: 一. Scala环境准备 二. Hadoop集群(伪分布模式)安装 查看 三. Spark集群(standalone模式)安装 查看 因Spark任务大多由Sca ...
- css布局------块元素水平垂直居中的四种方法
HTML <div class="parent answer-1"> <div></div></div> CSS .parent { ...
- Ubuntu下将现有的文件打包成deb包
转自:http://www.linuxidc.com/Linux/2008-04/12297.htm deb是Debian Linux的软件包格式.一般来说是需要通过编译源码然后制作deb包,今天由于 ...
- 使用 New Relic 监控接口服务性能 (APM)
偶然看到贴子在使用[Rails API] 使用这个APM监控,今天试了下.NET IIS环境下,配置一路NEXT即可. 主要指标 服务响应时间 Segment SQL执行时间 安全问题 1.走HTTP ...
- 用idea搭建SSM项目,原来这么简单
目录 前言 软件环境 创建项目 数据库文件 配置文件 pom.xml log4j.properties jdbc.properties applicationContext.xml spring-mv ...
- matlab中syms与sym有什么区别
syms x y %就是定了符号变量x y以后x y就可以直接使用了,有他们运算出来的结果也是符号变量 当然上面的也可以x=sym('x'),y=sym('y') sys('a+b')%就是将a+b转 ...
- SpringCloud初体验之Eureka
Eureka简介 SpringBoot简化了Spring工程的复杂度,之前复杂的Spring工程被拆分成了一个个小的SpringBoot工程.那么SpringBoot之间如何通讯,相互获取信息呢?这就 ...
- Redis的五种数据类型的简单介绍和使用
1.准备工作: 1.1在Linux下安装Redis https://www.cnblogs.com/dddyyy/p/9763098.html 1.2启动Redis 先把root/redis的red ...
- 用CSS控制DIV居中失效的解决方法
1.一般情况下DIV居中失效是因为没写DTD语句 在页面的最上方加上: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitiona ...