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 ...
随机推荐
- [Vijos 1676] 陶陶吃苹果
Description curimit知道陶陶很喜欢吃苹果.于是curimit准备在陶陶生日的时候送给他一棵苹果树. curimit准备了一棵这样的苹果树作为生日礼物:这棵苹果树有n个节点,每个节点上 ...
- Extjs 项目中常用的小技巧,也许你用得着(2)
接着来,也是刚刚遇到的 panel怎么进行收缩 collapsible: true, 这会panel就会出现这个 点这个就可以收缩了 panel怎么随便拉伸,也就是让那个小黑三角出现 split: t ...
- 无法初始化 PowerShell 主机解决方案
Question无法初始化 PowerShell 主机.如果您的 PowerShell 执行策略设置设为 AllSigned,请先打开程序包管理器控制台以初始化该主机. --------------- ...
- MSSQL存储过程应用
1.原始表inoutinfo 2.现在想输入时间范围和操作类型输出对应的结果 2.1创建存储过程 create proc selecttype@type nvarchar(10),@starttime ...
- LINQ 【高级查询】
using (Data0216DataContext con = new Data0216DataContext()) { List<Users> ulist = con.Use ...
- 如何在 ASP.NET Core 测试中操纵时间?
有时候,我们会遇到一些跟系统当前时间相关的需求,例如: 只有开学季才允许录入学生信息 只有到了晚上或者周六才允许备份博客 注册满 3 天的用户才允许进行一些操作 某用户在 24 小时内被禁止发言 很显 ...
- List排序Collections.sort 重写compare
static List<Integer> intList = Arrays.asList(2,5,7, 3, 1); public static void main(String[] ar ...
- SQL Server 中的一些概念
学习SQL Server 2012编程入门经典(第4版)的笔记 1.事务日志 任意数据库的更改起初不进入数据库本身,而是不断地被写入到事务日志. 日志是数据进入磁盘上的最先位置. 2.表 数据库中实际 ...
- nginx 匹配规则小总结
nginx location 等号类型(=)的优先级最高,需要精确匹配.一旦匹配成功,则不再查找其他匹配项. ^~类型表达式.一旦匹配成功,则不再查找其他匹配项. 正则表达式类型(~ ~*)的优先级次 ...
- 数组去重(ES5、ES6)
对象赋值思想:(接收后台数据绘制统计图用到了该想法) // ES5 /** * 数组.字符串去重 * @param {[string/array]} [数组] * @return {[array]} ...