传送门

Tree

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 102400/102400 K (Java/Others)

Problem Description
  Zero and One are good friends who always have fun with each other. This time, they decide to do something on a tree which is a kind of graph that there is only one path from node to node. First, Zero will give One an tree and every node in this tree has a value. Then, Zero will ask One a series of queries. Each query contains three parameters: $x, y, z$ which mean that he want to know the maximum value produced by $z$ xor each value on the path from node $x$ to node $y$ (including node $x$, node $y$). Unfortunately, One has no idea in this question. So he need you to solve it.
 
Input
  There are several test cases and the cases end with EOF. For each case:

The first line contains two integers $n$ ($1\le n \le 10^{5}$) and $m$ ($1 \le m \le 10^{5}$), which are the amount of tree’s nodes and queries, respectively.

The second line contains $n$ integers $a_1, a_2, \dots, a_n$ and $a_i$ ($0 \le a_i <2^{16}$) is the value on the $i$th node.

The next $n–1$ lines contains two integers $u, v$, which means there is an edge between $u$ and $v$.

The next $m$ lines contains three integers $x ,y, z$, which are the parameters of Zero’s query.

 
Output
  For each query, output the answer.
 
Sample Input
3 2
1 2 2
1 2
2 3
1 3 1
2 3 2
 
Sample Output
3
0
 
Source

Solution
可持久化 trie 。
trie可以解决关于异或的一个经典问题:
给定非负整数序列 $a_1,\cdots, a_n$ 和非负整数 $x$ 求
\[\max_{1 \le i \le n} a_i \text{^} x\]
做法:
将 $a_1$ 到 $a_n$ 的二进制形式(二进制串, 高位在前)插入到 trie 里, 用 $x$ 的二进制串在建好的 trie 里贪心匹配.
这种做法可推广到这个题目上:
我们对每个节点 $u$ 建立一棵 trie ,里面存的是从根节点到 $u$ 的路径上的所有节点的权值的二进制串.
先不考虑如何建这 $n$ 棵 trie ,我们考虑如何利用这 $n$ 棵 tire 完成题目要求的查询.
我们用 $\text{lca}(u,v)$ 表示 $u,v$ 的最近公共祖先(LCA), $\text{trie}_u$ 表示节点 $u$ 对应的 trie 。
对于询问 $(u, v, x)$ ,以 $x$ 的二进制串在 $\text{trie}_u, \text{trie}_v$ 和 $\text{trie}_{\text{lca}(u,v)}$ 中同步贪心匹配.
注意: 在贪心匹配的每个阶段, 我们匹配到的都是某个数的二进制串的某个前缀, 这个前缀属于哪个数是不知道的, 那么如何保证最后匹配到的那个二进制串对应的数出现在 $u$ 到 $v$ 的路径上呢?
 
可以这样做:
首先应当明确: tire 的每个节点都代表一个二进制串(二进制前缀). 我们对 tire 的每个节点维护一个值 $cnt$ 表示在这棵 tire 里有多少个(完整的)二进制串包含该节点对应的前缀(即该二进制前缀出现的次数).
 
这样欲匹配某个前缀时, 我们就能判断该前缀是否(也)属于$u$到$v$的路径上某个节点的权值对应的二进制串. 只有当该前缀合法时才能继续匹配.
 
具体而言, 设目前要匹配的二进制前缀在 $\text{trie}_u, \text{trie}_v$ 和 $\text{trie}_{\text{lca}(u,v)}$ 分别对应于节点 $p,q,r$, 则要求:\[p.cnt+q.cnt>2\times r.cnt\]
 
这样做有一个潜在的 bug:
当 $a_{\text{lca}(u,v)}$ 是唯一最优解时, 会被忽略.  所以最后还要用 $x\text{^}a_{\text{lca}(u,v)}$ 更新答案.
 
当然这个麻烦也是可应避免的, 只要把 $\text{trie}_{\text{lca}(u,v)}$ 换成 $\text{trie}_{\text{par}(\text{lca}(u,v))}$ —— $\text{par}(u)$ 表示 $u$ 的父节点——就可以了.
 
现在考虑建 $n$ 棵 trie 的问题. 我们没必要分别建 $n$ 棵 trie, 而且这样做空间和时间都无法承受. 考虑到 $\text{trie}_u$ 与 $\text{trie}_{\text{par}(u)}$ 的差别只是多插入了 $a_u$ 对应的二进制串, 我们可以采用可持久化 trie 来建这 $n$ 棵树. (如果读者还不了解可久化数据结构, 可参考陈立杰的《可持久化数据结构研究》的第 4 节——可持久化线段树.)

Implementation

可持久化 trie 在写法上有一个技巧: 我们一开始用一个节点表示一棵空树, 将此节点的 $cnt$ 置为 $0$. 在建树的过程中如果某个节点的某个儿子为空, 对应的指针就指向该空节点.
这样写起来就方便很多, 而且不会有 bug.
#include <bits/stdc++.h>
using namespace std; const int M{<<}, N{<<}; int a[N], nxt[M][], cnt[M], tail, root[N];
vector<int> g[N]; //a NULL NODE
//The empty tree is a well-defined tree! int Insert(int id, int v, int dep){ //this node is going to be modified
//always copy before modification
int cur=tail++;
cnt[cur]=cnt[id]+;
if(dep>=)
if(v&<<dep){
nxt[cur][]=nxt[id][];
nxt[cur][]=Insert(nxt[id][], v, dep-);
}
else{
nxt[cur][]=Insert(nxt[id][], v, dep-);
nxt[cur][]=nxt[id][];
}
else nxt[cur][]=nxt[cur][]=; //error-prone return cur;
} int fa[N][], dep[N]; void dfs(int u, int f){
fa[u][]=f, dep[u]=dep[f]+;
for(int i=; i<; i++)
fa[u][i]=fa[fa[u][i-]][i-]; root[u]=Insert(root[f], a[u], );
for(auto x:g[u])
if(x!=f)
dfs(x, u);
} int get_lca(int u, int v){
if(dep[u]<dep[v]) swap(u, v);
int diff=dep[u]-dep[v];
for(int i=; i<; i++)
if(diff&<<i) u=fa[u][i];
if(u==v) return u;
for(int i=; i>=; i--) //error-prone
if(fa[u][i]!=fa[v][i])
u=fa[u][i], v=fa[v][i];
return fa[u][];
} //keep it simple
int query(int u, int v, int x){
int res=, lca=get_lca(u, v);
int _u=root[u], _v=root[v], _w=root[lca]; for(int i=; i>=; i--){
bool f=!(x&<<i);
//check if this bit valid
if(cnt[nxt[_u][f]]+cnt[nxt[_v][f]]>cnt[nxt[_w][f]]<<) res|=<<i;
else f=!f;
_u=nxt[_u][f], _v=nxt[_v][f], _w=nxt[_w][f];
}
return max(res, x^a[lca]);
} int main(){
for(int n, m; cin>>n>>m; ){
for(int i=; i<=n; i++){
scanf("%d", a+i);
g[i].clear();
}
for(int u, v, i=; i<n; i++){
scanf("%d%d", &u, &v);
g[u].push_back(v);
g[v].push_back(u);
}
//construct an empty tree
root[]=tail=, memset(nxt[tail], , sizeof(nxt[tail])), cnt[tail]=, tail++; dfs(, );
for(int u, v, x, lca; m--; ){
scanf("%d%d%d", &u, &v, &x);
printf("%d\n", query(u, v, x));
}
}
}
 
 
 
 
 
 
 
 

HDU 4757 Tree的更多相关文章

  1. HDU 4757 Tree(可持久化Trie+Tarjan离线LCA)

    Tree Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 102400/102400 K (Java/Others) Total Su ...

  2. HDU 4757 Tree 可持久化字典树

    Tree Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=4757 Des ...

  3. HDU 4757 Tree(可持久化trie)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4757 题意:给出一棵树,节点有权值.每次询问x到y的路径上与z抑或的最大值. 思路:可持久化trie. ...

  4. HDU 4757 Tree 可持久化字典树 trie

    http://acm.hdu.edu.cn/showproblem.php?pid=4757 给出一棵树,每个节点有权值,每次查询节点 (u,v) 以及 val,问 u 到 v 路径上的某个节点与 v ...

  5. HDU 4757 Tree(可持续化字典树,lca)

    题意:询问树上结点x到结点y路上上的权值异或z的最大值. 任意结点权值 ≤ 2^16,可以想到用字典树. 但是因为是询问某条路径上的字典树,将字典树可持续化,字典树上的结点保存在这条路径上的二进制数. ...

  6. HDU 4757 Tree(可持久化字典树)(2013 ACM/ICPC Asia Regional Nanjing Online)

    Problem Description   Zero and One are good friends who always have fun with each other. This time, ...

  7. HDU.4757.Tree(可持久化Trie)

    题目链接 \(Description\) 给定一棵树,点有点权.\(Q\)次询问\(x,y,z\),求\(x\)到\(y\)的简单路径中,与\(z\)异或能得到的最大的数是多少. \(Solution ...

  8. hdu 5909 Tree Cutting [树形DP fwt]

    hdu 5909 Tree Cutting 题意:一颗无根树,每个点有权值,连通子树的权值为异或和,求异或和为[0,m)的方案数 \(f[i][j]\)表示子树i中经过i的连通子树异或和为j的方案数 ...

  9. HDU 5044 Tree(树链剖分)

    HDU 5044 Tree field=problem&key=2014+ACM%2FICPC+Asia+Regional+Shanghai+Online&source=1&s ...

随机推荐

  1. Reverse Words in a String

    void reverseWords(string &s) { string res = "", tmp = ""; int l = s.length() ...

  2. Datatable删除行的Delete和Remove方法

    在C#中,如果要删除DataTable中的某一行,大约有以下几种办法: 1,使用DataTable.Rows.Remove(DataRow),或者DataTable.Rows.RemoveAt(ind ...

  3. DataTrigger 绑定枚举

    在触发器中绑定枚举类型: <ControlTemplate.Triggers> <DataTrigger Binding="{Binding CheckStateEnum} ...

  4. 网页样式——各种炫酷效果持续更新ing...

    1.evanyou效果-彩带的实现,效果如下 注:这个主要用的是Canvas画布实现的,点击背景绘制新的图形,代码如下: /*Html代码:*/ <canvas id=">< ...

  5. Android回调

    当A页面跳往B页面做一些操作后,再从B页面回到A页面时,A页面想要回去一些B页面操作的数据时,我们一般会使用回调. 1 public class MainActivity extends Activi ...

  6. 安装win10

    1.百度win10,看到的大都是雨林木风,ghost等江湖杂牌非原版系统.百度”msdn,我告诉你“进入微软MSDN下载中心(原来还有这么个好地方,以后就从这里下了),下载链接是ed2k格式的链接(e ...

  7. js 漩涡

    What's the ball's orbit if they head for it's next ball. <html> <canvas id="ca"&g ...

  8. “Ceph浅析”系列之二——Ceph概况

    本文将对Ceph的基本情况进行概要介绍,以期读者能够在不涉及技术细节的情况下对Ceph建立一个初步印象. 1. 什么是Ceph? Ceph的官方网站Ceph.com上用如下这句话简明扼要地定义了Cep ...

  9. 【BZOJ 1875】【SDOI 2009】HH去散步

    水啊水,最后ans别忘了%哦! #include<cstdio> #include<cstring> #include<algorithm> using names ...

  10. DOCTYPE是什么鬼?文档模式又是什么鬼?

    !DOCTYPE !DOCTYPE是什么: 在所有 HTML 文档中规定 DOCTYPE 是非常重要的,这样浏览器就能了解预期的文档类型, 告诉浏览器要通过哪一种规范(文档类型定义 DTD)解析文档( ...