题目大意

给定一棵\(n\)个点的树,每个点有权值

\(q\)次询问树上路径中

每个点权值可选可不选的最大异或和

\(n\le 2*10^4,q\le 2*10^5,val[i]\le 2^{60}\)

分析

线性基

但数据范围不太对啊woc

两线性基合并\(O(60^2)\)

如果 树剖+线性基 则\(O(q\log^2n ~60^2)\)

如果 树上倍增+线性基 则是一个常数较大的\(O(q\log n~60^2)\)

不是很妙啊

做法1

注意到,这不是常规的树上询问,因为是异或(线性基)

线性基同一个值重复插入时没有问题的

即树上某一段算重是可以的

那么我们可以这样算



其中橙色部分时一个长度\(2^k\)的段

这样就只用统计\(4\)次了

复杂度\(O(4*60^2~q)\)

做法2

点分治

求出重心到每个点的线性基\(O(60n)\)

然后解决询问

如果询问与该重心有关,单次\(O(60^2)\)

否则将该询问传到儿子

点分每层扫过的询问数\(O(q)\)的

总复杂度

\(O(60n\log n~+~q \log n~+~60^2 q)\)

solution 1

#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <algorithm>
using namespace std;
const int M=2e4+7;
const int B=60;
typedef long long LL; inline int rd(){
int x=0;bool f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=0;
for(;isdigit(c);c=getchar()) x=x*10+c-48;
return f?x:-x;
} inline LL lrd(){
LL x=0;bool f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=0;
for(;isdigit(c);c=getchar()) x=x*10+c-48;
return f?x:-x;
} struct vec{
int g[M],te;
struct edge{
int y,nxt;
edge(int _y=0,int _nxt=0){
y=_y,nxt=_nxt;
}
}e[M<<1];
vec(){memset(g,0,sizeof g);te=0;}
inline void push(int x,int y){e[++te]=edge(y,g[x]);g[x]=te;}
inline void push2(int x,int y){push(x,y);push(y,x);}
inline int& operator () (int x){return g[x];}
inline edge& operator [] (int x){return e[x];}
}e; struct Base{
LL a[B+3];
Base(){memset(a,0,sizeof a);}
void ins(LL x){
for(int i=B;i>=0;i--) if(x>>i&1){
if(a[i]) x^=a[i];
else {a[i]=x;return;}
}
} LL getmx(){
LL res=0; int i;
for(i=B;i>=0;i--) if((res^a[i])>res) res^=a[i];
return res;
} friend Base merge(const Base &x,const Base &y){
Base res; int i;
for(i=B;i>=0;i--) if(x.a[i]) res.ins(x.a[i]);
for(i=B;i>=0;i--) if(y.a[i]) res.ins(y.a[i]);
return res;
} friend Base merge(const Base &x,const LL &y){
Base res=x;
res.ins(y);
return res;
}
}; int n,m,D;
LL val[M];
int dep[M];
int pre[M][15];
Base f[M][15]; void dfs(int x){
int p,y;
for(p=e(x);p;p=e[p].nxt)
if((y=e[p].y)!=pre[x][0]){
dep[y]=dep[x]+1;
pre[y][0]=x;
f[y][0].ins(val[y]);
dfs(y);
}
} void init(){
D=(int)log2(n);
int i,j;
for(j=1;j<=D;j++)
for(i=1;i<=n;i++){
pre[i][j]=pre[pre[i][j-1]][j-1];
f[i][j]=merge(f[i][j-1],f[pre[i][j-1]][j-1]);
}
} int LCA(int x,int y){
int i;
if(dep[x]<dep[y]) swap(x,y);
for(i=D;i>=0;i--)
if(dep[pre[x][i]]>=dep[y]) x=pre[x][i];
if(x==y) return x;
for(i=D;i>=0;i--)
if(pre[x][i]!=pre[y][i]) x=pre[x][i],y=pre[y][i];
return pre[x][0];
} int jp(int x,int kth){
for(int i=D;i>=0;i--) if(kth>>i&1) x=pre[x][i];
return x;
} Base calc(int x,int to){
for(int i=D;i>=0;i--) if(dep[pre[x][i]]>=dep[to]){
int y=jp(x,dep[pre[x][i]]-dep[to]);
return merge(f[x][i],f[y][i]);
}
return Base();
} LL get(int x,int y){
Base res;
int lca=LCA(x,y),i;
res=merge(merge(calc(x,lca),calc(y,lca)),val[lca]);
return res.getmx();
} int main(){ int i,x,y; n=rd(),m=rd();
for(i=1;i<=n;i++) val[i]=lrd(); for(i=1;i<n;i++) e.push2(rd(),rd()); pre[1][0]=0; dep[1]=1;
dfs(1);
init(); for(i=1;i<=m;i++){
x=rd(),y=rd();
printf("%lld\n",get(x,y));
} return 0;
}

solution 2

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cmath>
#include <algorithm>
using namespace std;
const int N=2e5+7;
const int M=2e4+7;
const int B=60;
typedef long long LL; inline int ri(){
int x=0;bool f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=0;
for(;isdigit(c);c=getchar()) x=x*10+c-48;
return f?x:-x;
} inline LL rl(){
LL x=0;bool f=1;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=0;
for(;isdigit(c);c=getchar()) x=x*10+c-48;
return f?x:-x;
} struct vec{
int g[M],te;
struct edge{
int y,nxt;
edge(int _y=0,int _nxt=0){y=_y,nxt=_nxt;}
}e[M<<1];
vec(){memset(g,0,sizeof g);te=0;}
inline void push(int x,int y){e[++te]=edge(y,g[x]);g[x]=te;}
inline void push2(int x,int y){push(x,y);push(y,x);}
inline int& operator () (int x){return g[x];}
inline edge& operator [] (int x){return e[x];}
}e; struct vec2{
int g[M],te;
struct ques{
int x,y,id,nxt;
ques(int _x=0,int _y=0,int _id=0,int _nxt=0){x=_x,y=_y,id=_id,nxt=_nxt;}
}e[N*17];
vec2(){memset(g,0,sizeof g);te=0;}
inline void push(int u,int x,int y,int id){e[++te]=ques(x,y,id,g[u]);g[u]=te;}
inline int& operator () (int x){return g[x];}
inline ques& operator [] (int x){return e[x];}
}ask; struct Base{
LL a[B+3]; Base(){memset(a,0,sizeof a);}
void clear(){memset(a,0,sizeof a);} void ins(LL x){
for(int i=B;i>=0;i--) if(x>>i&1){
if(a[i]) x^=a[i];
else {a[i]=x;break;}
}
} LL getmx(){
LL res=0;
for(int i=B;i>=0;i--) if((res^a[i])>res) res^=a[i];
return res;
} friend Base merge(const Base &x,const Base &y){
Base res;
for(int i=B;i>=0;i--) if(x.a[i]) res.ins(x.a[i]);
for(int i=B;i>=0;i--) if(y.a[i]) res.ins(y.a[i]);
return res;
} friend Base merge(const Base &x,const LL &y){
Base res=x;
res.ins(y);
return res;
}
}; int n,m;
LL val[M];
int sz[M];
int mi,size,rt;
bool vis[M];
int bl[M];
LL ans[N];
Base f[M]; LL calc(int x,int y){
Base res=merge(f[x],f[y]);
return res.getmx();
} void getsz(int x,int fa){
sz[x]=1;
int p,y;
for(p=e(x);p;p=e[p].nxt)
if((y=e[p].y)!=fa&&!vis[y]){
getsz(y,x);
sz[x]+=sz[y];
}
} void getrt(int x,int fa){
int f=size-sz[x],p,y;
for(p=e(x);p;p=e[p].nxt)
if((y=e[p].y)!=fa&&!vis[y]){
getrt(y,x);
f=max(f,sz[y]);
}
if(f<mi) mi=f,rt=x;
} void dfs(int x,int fa){
f[x]=merge(f[fa],val[x]);
int p,y;
for(p=e(x);p;p=e[p].nxt)
if((y=e[p].y)!=fa&&!vis[y]) bl[y]=bl[x],dfs(y,x);
} void work(int fr){
getsz(fr,0);
mi=size=sz[fr];
getrt(fr,0);
int x=rt,i,p,y;
vis[x]=1; bl[x]=x;
f[x].clear(); f[x].ins(val[x]);
if(x!=fr) {ask(x)=ask(fr); ask(fr)=0;}// for(p=e(x);p;p=e[p].nxt)
if(!vis[y=e[p].y]){
bl[y]=y;
dfs(y,x);
} for(p=ask(x);p;p=ask[p].nxt){
if(bl[ask[p].x]==bl[ask[p].y]) ask.push(bl[ask[p].x],ask[p].x,ask[p].y,ask[p].id);
else ans[ask[p].id]=calc(ask[p].x,ask[p].y);
} for(p=e(x);p;p=e[p].nxt)
if(!vis[y=e[p].y]) work(y);
} int main(){ int i,x,y;
n=ri(),m=ri();
for(i=1;i<=n;i++) val[i]=rl(); for(i=1;i<n;i++) e.push2(ri(),ri()); for(i=1;i<=m;i++){
x=ri(), y=ri();
if(x==y) ans[i]=val[x];
else ask.push(1,x,y,i);
} work(1); for(int i=1;i<=m;i++) printf("%lld\n",ans[i]); return 0;
}

bzoj 4568 [SCOI 2016] 幸运数字的更多相关文章

  1. [SCOI 2016]幸运数字

    Description A 国共有 n 座城市,这些城市由 n-1 条道路相连,使得任意两座城市可以互达,且路径唯一.每座城市都有一个幸运数字,以纪念碑的形式矗立在这座城市的正中心,作为城市的象征.一 ...

  2. Scoi 2010 幸运数字

    [题目描述]在中国,很多人都把6和8视为是幸运数字!lxhgww也这样认为,于是他定义自己的“幸运号码”是十进制表示中只包含数字6和8的那些号码,比如68,666,888都是“幸运号码”!但是这种“幸 ...

  3. BZOJ 4568 幸运数字

    题目传送门 4568: [Scoi2016]幸运数字 Time Limit: 60 Sec Memory Limit: 256 MB Description A 国共有 n 座城市,这些城市由 n-1 ...

  4. BZOJ 4568: [Scoi2016]幸运数字 [线性基 倍增]

    4568: [Scoi2016]幸运数字 题意:一颗带点权的树,求树上两点间异或值最大子集的异或值 显然要用线性基 可以用倍增的思想,维护每个点向上\(2^j\)个祖先这些点的线性基,求lca的时候合 ...

  5. bzoj 4568: [Scoi2016]幸运数字

    4568: [Scoi2016]幸运数字 Time Limit: 60 Sec  Memory Limit: 256 MBSubmit: 848  Solved: 336[Submit][Status ...

  6. 【BZOJ 4568】 4568: [Scoi2016]幸运数字 (线性基+树链剖分+线段树)

    4568: [Scoi2016]幸运数字 Description A 国共有 n 座城市,这些城市由 n-1 条道路相连,使得任意两座城市可以互达,且路径唯一.每座城市都有一个 幸运数字,以纪念碑的形 ...

  7. BZOJ 4568 [Scoi2016]幸运数字(树链剖分 + 异或线性基)

    题目链接  BZOJ 4568 考虑树链剖分+线段树维护每一段区域的异或线性基 对于每个询问,求出该点集的异或线性基.然后求一下这个线性基里面能异或出的最大值即可. #include <bits ...

  8. BZOJ 1853 【Scoi2010】 幸运数字

    Description 在中国,很多人都把6和8视为是幸运数字!lxhgww也这样认 为,于是他定义自己的"幸运号码"是十进制表示中只包含数字6和8的那些号码,比如68,666,8 ...

  9. BZOJ 1853: [Scoi2010]幸运数字

    1853: [Scoi2010]幸运数字 Time Limit: 2 Sec  Memory Limit: 64 MBSubmit: 2117  Solved: 779[Submit][Status] ...

随机推荐

  1. windows下安装mongodb的崩溃史

    一.下载 官方网站的下载页面打不开https://www.mongodb.com/download-center?jmp=nav 问朋友要了一份,是3.6的,下载安装会卡死.弄了一个小时也半点反应没有 ...

  2. 搭建简单Django服务并通过HttpRequester实现GET/POST http请求提交表单

    调试Django框架写的服务时,需要模拟客户端发送POST请求,然而浏览器只能模拟简单的GET请求(将参数写在url内),网上搜索得到了HttpRequester这一firefox插件,完美的实现了模 ...

  3. SVN的使用——下载、安装

    今天我们来学习一下如何使用SVN(Subversion) 既然要使用SVN那么我们就先来认识一下SVN.SVN的全名是Subversion,它是一个自由,开源的版本控制系统.在Subversion管理 ...

  4. MYSQL order by排序与索引关系总结

    MySQL InnoDB B-Tree索引使用Tips 这里主要讨论一下InnoDB B-Tree索引的使用,不提设计,只管使用.B-Tree索引主要作用于WHERE和ORDER BY子句.这里讨论的 ...

  5. Java开发工程师(Web方向) - 04.Spring框架 - 第3章.AOP技术

    第3章--AOP技术 Spring框架 - AOP概述 笔记https://my.oschina.net/hava/blog/758873Spring框架 - AOP使用 笔记https://my.o ...

  6. spring boot 报错 Error creating bean with name

    Application 启动类 要和父目录平级

  7. Vue-cli 工具 / 通过 Vue-cli 工具重构 todoList

    本博文归纳在 Vue 学习过程中, Vue-cli 工具的使用说明.除此之外还通过 Vue-cli 工具将之前 Vuejs 基本语法当中实现的 todoList 进行重构. 安装 npm instal ...

  8. 随机森林random forest及python实现

    引言想通过随机森林来获取数据的主要特征 1.理论根据个体学习器的生成方式,目前的集成学习方法大致可分为两大类,即个体学习器之间存在强依赖关系,必须串行生成的序列化方法,以及个体学习器间不存在强依赖关系 ...

  9. Python 学习笔记之——用 sklearn 对数据进行预处理

    1. 标准化 标准化是为了让数据服从一个零均值和单位方差的标准正态分布.也即针对一个均值为 \(mean\) 标准差为 \(std\) 的向量 \(X\) 中的每个值 \(x\),有 \(x_{sca ...

  10. ajax获取动态列表数据后的分页问题

    ajax获取动态列表数据后的分页问题 这是我在写前台网站时遇到的一个分页问题,由于数据是通过ajax的方式来请求得到的,如果引入相应的js文件来做分页,假如只是静态的填放数据到列表各项内容中(列表条数 ...