CF1878G.wxhtzdy ORO Tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
After (finally) qualifying for the IOI 2023, wxhtzdy was very happy, so he decided to do what most competitive programmers do: trying to guess the problems that will be on IOI. During this process, he accidentally made a problem, which he thought was really cool.
You are given a tree (a connected acyclic graph) with n vertices and n−1 edges. Vertex i ( 1≤i≤n ) has a value ai .
Lets' define g(u,v) as the bitwise or of the values of all vertices on the shortest path from u to v . For example, let's say that we want to calculate g(3,4) , on the tree from the first test case in the example. On the path from 3 to 4 are vertices 3 , 1 , 4 . Then, g(3,4)=a3 ∣ a1 ∣ a4 (here, ∣ represents the bitwise OR operation).
Also, you are given q queries, and each query looks like this:
You are given x and y . Let's consider all vertices z such that z is on the shortest path from x to y (inclusive).
Lets define the niceness of a vertex z as the sum of the number of non-zero bits in g(x,z) and the number of non-zero bits in g(y,z) . You need to find the maximum niceness among all vertices z on the shortest path from x to y .
Since his brain is really tired after solving an output only problem on SIO (he had to do it to qualify for the IOI), he wants your help with this problem.
输入格式
The first line of input contains a single integer t ( 1≤t≤104 ) — the number of test cases.
The first line of each test case contains a single integer n ( 1≤n≤2⋅105 ) — the number of vertices.
The second line of each test case contains n positive integers a1,a2,…,an ( 1≤av≤109 ) — the value of each vertex, the i -th integer in this line corresponds to the vertex i .
Following n−1 lines are the description of a tree.
Each line contains two integers u and v ( 1≤u,v≤n,u=v ) — indicating that vertices u and v are connected by an edge.
The next line contains a single integer q ( 1≤q≤105 ) — number of queries.
Following q lines contain 2 integers x,y ( 1≤x,y≤n ) — the vertices x and y for each query.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
It is guaranteed that the sum of q over all test cases does not exceed 105 .
输出格式
For each test case output q integers, each of which is the answer to the corresponding query.
输入输出样例
输入#1
3 4 1 2 3 4 1 3 1 2 1 4 3 1 1 1 3 1 4 3 7 6 3 3 1 2 1 4 1 1 1 2 1 3 2 3 1 4 1 1 1
输出#1
2 4 3 6 6 6 6 2
输入#2
3 7 4 7 7 4 10 8 10 6 1 3 1 2 1 7 4 1 5 4 2 4 7 5 2 3 4 5 2 5 6 9 5 6 2 4 6 5 1 2 1 1 6 4 3 1 3 4 6 1 1 4 4 3 3 5 7 5 1 3 7 5 1 6 2 1 5 4 2 3 3 4 7 6 6 3 2 4 2 7 7
输出#2
8 6 7 7 6 6 4 7 6 4
输入#3
1 7 6 8 7 2 5 8 7 2 1 3 2 4 3 4 6 4 5 6 7 4 1 5 6 7 4 5 1 4
输出#3
7 7 5 7
说明/提示
The image below shows the tree from the second example, first test case.
Tree from the second example, first test caseIn the first query, we have x=7 , y=5 . The shortest path from 7 to 5 is 7−4−2−1−5 .
Let's calculate the niceness of vertex 7 on this path. We have g(7,7)=a7=10=(1010)2 and g(5,7)=a5 ∣ a1 ∣ a2 ∣ a4 ∣ a7=10 ∣ 4 ∣ 7 ∣ 4 ∣ 10=15=(1111)2 , so its niceness is equal to 2+4=6 .
Now let's calculate the niceness of vertex 4 on this path. We have g(7,4)=a7 ∣ a4=10 ∣ 4=14=(1110)2 and g(5,4)=a5 ∣ a1 ∣ a2 ∣ a4=10 ∣ 4 ∣ 7 ∣ 4=15=(1111)2 , so its niceness is equal to 3+4=7 .
Now let's calculate the niceness of vertex 2 on this path. We have g(7,2)=a7 ∣ a4 ∣ a2=10 ∣ 4 ∣ 7=15=(1111)2 and g(5,2)=a5 ∣ a1 ∣ a2=10 ∣ 4 ∣ 7=15=(1111)2 , so its niceness is equal to 4+4=8 .
Now let's calculate the niceness of vertex 1 on this path. We have g(7,1)=a7 ∣ a4 ∣ a2 ∣ a1=10 ∣ 4 ∣ 7 ∣ 4=15=(1111)2 and g(5,1)=a5 ∣ a1=10 ∣ 4=14=(1110)2 , so its niceness is equal to 4+3=7 .
Finally, let's calculate the niceness of vertex 5 on this path. We have g(7,5)=a7 ∣ a4 ∣ a2 ∣ a1 ∣ a5=10 ∣ 4 ∣ 7 ∣ 4 ∣ 10=15=(1111)2 and g(5,5)=a5=10=(1010)2 , so its niceness is equal to 4+2=6 .
The maximum niceness on this path is at vertex 2 , and it is 8 .