首页 > BZOJ4568: [Scoi2016]幸运数字(线性基 倍增)

BZOJ4568: [Scoi2016]幸运数字(线性基 倍增)

题意

题目链接

Sol

线性基是可以合并的

倍增维护一下

然后就做完了??

喵喵喵?

// luogu-judger-enable-o2
#include
#define LL long long 
using namespace std;
const int MAXN = 2e4 + 10, B = 60;
inline LL read() {char c = getchar(); LL x = 0, f = 1;while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();return x * f;
}
int N, Q, g[MAXN][16], dep[MAXN];
LL a[MAXN];
vector v[MAXN];
struct Node {LL P[62];Node() {memset(P, 0, sizeof(P));}void insert(LL x) {for(int i = B; i >= 0; i--) {if((!(x >> i & 1))) continue;if(P[i]) {x ^= P[i]; continue;}P[i] = x; break;}}LL QueryMax() {LL ans = 0;for(int i = B; i >= 0; i--) ans = max(ans, ans ^ P[i]);return ans;}Node operator + (const Node &rhs) const {Node ans; for(int i = 0; i <= B; i++) ans.P[i] = this -> P[i];for(int i = 0; i <= B; i++) if(rhs.P[i]) ans.insert(rhs.P[i]);return ans; }
}f[MAXN][16];
void dfs(int x, int fa) {dep[x] = dep[fa] + 1;g[x][0] = fa;f[x][0].insert(a[x]); f[x][0].insert(a[fa]);for(int i = 0; i < v[x].size(); i++) {int to = v[x][i];if(to == fa) continue;dfs(to, x);}
}
void Pre() {for(int j = 1; j <= 15; j++)for(int i = 1; i <= N; i++)g[i][j] = g[g[i][j - 1]][j - 1], f[i][j] = f[i][j - 1] + f[g[i][j - 1]][j - 1];
}
LL Query(int x, int y) {Node base; base.insert(a[x]); base.insert(a[y]);if(dep[x] < dep[y]) swap(x, y);for(int i = 15; i >= 0; i--)if(dep[g[x][i]] >= dep[y])base = base + f[x][i], x = g[x][i];if(x == y) return base.QueryMax();for(int i = 15; i >= 0; i--)if(g[x][i] != g[y][i]) {base = base + f[x][i];base = base + f[y][i];x = g[x][i], y = g[y][i];}base = base + f[x][0]; base = base + f[y][0];return base.QueryMax();
}
int main() {
#ifndef ONLINE_JUDGE//freopen("a.in", "r", stdin); freopen("b.out", "w", stdout);
#endifN = read(); Q = read();for(int i = 1; i <= N; i++) a[i] = read();for(int i = 1; i <= N - 1; i++) {int x = read(), y = read();v[x].push_back(y); v[y].push_back(x);}dfs(1, 0);Pre();while(Q--) {int x = read(), y = read();printf("%lld
", Query(x, y));}return 0;
}
/*
8 4
45654 251 321 54687 321321 654 6321432 5646
1 2
2 3
2 4
1 5
4 6 
6 7
5 87 8
7 5
6 8
4 1
*/

转载于:https://www.cnblogs.com/zwfymqz/p/10059651.html

更多相关:

  •         Apache POI是一个开源的利用Java读写Excel,WORD等微软OLE2组件文档的项目。        我的需求是对Excel的数据进行导入或将数据以Excel的形式导出。先上简单的测试代码:package com.xing.studyTest.poi;import java.io.FileInputSt...

  • 要取得[a,b)的随机整数,使用(rand() % (b-a))+ a; 要取得[a,b]的随机整数,使用(rand() % (b-a+1))+ a; 要取得(a,b]的随机整数,使用(rand() % (b-a))+ a + 1; 通用公式:a + rand() % n;其中的a是起始值,n是整数的范围。 要取得a到b之间的...

  • 利用本征图像分解(Intrinsic Image Decomposition)算法,将图像分解为shading(illumination) image 和 reflectance(albedo) image,计算图像的reflectance image。 Reflectance Image 是指在变化的光照条件下能够维持不变的图像部分...

  • 题目:面试题39. 数组中出现次数超过一半的数字 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5, 4, 2] 输出: 2 限制: 1 <= 数组长度 <= 50000 解题: cl...

  • 题目:二叉搜索树的后序遍历序列 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。 参考以下这颗二叉搜索树:      5     /    2   6   /  1   3示例 1: 输入: [1,6,3,2,5] 输出...

  • 题目:数值的整数次方 实现函数double Power(double base, int exponent),求base的exponent次方。不得使用库函数,同时不需要考虑大数问题。 示例 1: 输入: 2.00000, 10 输出: 1024.00000 示例 2: 输入: 2.10000, 3 输出: 9.26100...

  • 本文用来测试C++基类和派生类构造函数,析构函数,和拷贝构造函数的调用次序。 运行环境:SUSE Linux Enterprise Server 11 SP2  (x86_64)  #include using namespace std; class Base { public:    ...

  • 用python编写乘法口诀表的方法 发布时间:2020-08-25 11:46:35 来源:亿速云 阅读:60 作者:小新 用python编写乘法口诀表的方法?这个问题可能是我们日常学习或工作经常见到的。希望通过这个问题能让你收获颇深。下面是小编给大家带来的参考内容,让我们一起来看看吧! 第一种:使用for遍历循环嵌套for x in...

  • //很长一段时间我都只使用以下方式做数组循环,具体原因看数据 var aa = for (var i = 0, l = aa.length; i < l; i++) { var a = aa[i];} 数据采集图片来源于网友 很明显,for循环第二种方式完胜!!! 至于for in、forEach什么的,不知道甩他们多少...

  • 目录 1. Scene Graph Generation with External Knowledge and Image Reconstruction 2. Knowledge Acquisition for Visual Question Answering via Iterative Querying Author...

  • 基础题1: 输入一个正整数 n (1≤n≤10)和n 阶方阵a的元素,如果方阵a中的所有元素都沿主对角线对称,输出“Yes”, 否则,输出“No”。主对角线为从矩阵的左上角至右下角的连线,方阵a中的所有元素都沿主对角线对称指对所有i, k,a[i][k]和a[k][i]相等。输入输出示例如下: 输入: 3 1 2 3 4 5 6 7...

  • 程序流程控制 分支 顺序 循环 if switch&case 1 2 3 调整 break 1.6 前 switch(byte、short、char、int) 1.7 可放String 循环 while(次数不确定) do while for(确定次数) break(跳出本层循环) continue(跳出本次循环)     *   2...