Mahmoud and Ehab live in a country with n cities numbered from 1 to n and connected by n - 1 undirected roads. It's guaranteed that you can reach any city from any other using these roads. Each city has a number ai attached to it.

We define the distance from city x to city y as the xor of numbers attached to the cities on the path from x to y (including both x and y). In other words if values attached to the cities on the path from x to y form an array p of length l then the distance between them is , where  is bitwise xor operation.

Mahmoud and Ehab want to choose two cities and make a journey from one to another. The index of the start city is always less than or equal to the index of the finish city (they may start and finish in the same city and in this case the distance equals the number attached to that city). They can't determine the two cities so they try every city as a start and every city with greater index as a finish. They want to know the total distance between all pairs of cities.

Input

The first line contains integer n (1 ≤ n ≤ 105) — the number of cities in Mahmoud and Ehab's country.

Then the second line contains n integers a1, a2, ..., an (0 ≤ ai ≤ 106) which represent the numbers attached to the cities. Integer ai is attached to the city i.

Each of the next n  -  1 lines contains two integers u and v (1  ≤  u,  v  ≤  nu  ≠  v), denoting that there is an undirected road between cities uand v. It's guaranteed that you can reach any city from any other using these roads.

Output

Output one number denoting the total distance between all pairs of cities.

Examples
input
3
1 2 3
1 2
2 3
output
10
input
5
1 2 3 4 5
1 2
2 3
3 4
3 5
output
52
input
5
10 9 8 7 6
1 2
2 3
3 4
3 5
output
131
Note

A bitwise xor takes two bit integers of equal length and performs the logical xor operation on each pair of corresponding bits. The result in each position is 1 if only the first bit is 1 or only the second bit is 1, but will be 0 if both are 0 or both are 1. You can read more about bitwise xoroperation here: https://en.wikipedia.org/wiki/Bitwise_operation#XOR.

In the first sample the available paths are:

  • city 1 to itself with a distance of 1,
  • city 2 to itself with a distance of 2,
  • city 3 to itself with a distance of 3,
  • city 1 to city 2 with a distance of ,
  • city 1 to city 3 with a distance of ,
  • city 2 to city 3 with a distance of .

The total distance between all pairs of cities equals 1 + 2 + 3 + 3 + 0 + 1 = 10.

题意:求树每两个点的异或和(包括本身)
解法:
1 dp[i][0]表示经过i点,异或值为0的有多少,dp[i][1]表示经过i点,异或值为1的有多少
2 因为是异或,每一位都是独立的,我们就把它们按照每一位进行计算,然后根据乘法原理加起来
3 这个代码包括很多技巧
4 自己本身就加自己就好了
 #include<bits/stdc++.h>
using namespace std;
const int maxn=1e5+;
vector<long long>Ve[maxn];
int n;
long long dp[maxn][];
long long sum;
int a[maxn];
long long ans;
void dfs(int i,int pr,int bit){
int pos=(a[i]>>bit)&;
dp[i][pos]=;
dp[i][pos^]=;
long long sit=;
for(int x=;x<Ve[i].size();x++){
int v=Ve[i][x];
if(v==pr){
continue;
}
dfs(v,i,bit);
sit+=(long long)(dp[v][]*dp[i][]+dp[i][]*dp[v][]);
dp[i][pos^]+=dp[v][];
dp[i][pos^]+=dp[v][];
}
ans+=(sit<<bit);
// cout<<ans<<endl;
}
int main(){
cin>>n;
for(int i=;i<=n;i++){
cin>>a[i];
sum+=a[i];
}
for(int i=;i<n;i++){
int x,y;
cin>>x>>y;
Ve[x].push_back(y);
Ve[y].push_back(x);
}
for(int i=;i<=;i++){
dfs(,,i);
}
cout<<sum+ans<<endl;
return ;
}

最新文章

  1. 十天精通CSS3学习笔记 part2
  2. CSS绝对定位的应用
  3. mysql memory表性能测试以及使用场景
  4. oracle case when 在查询时候的用法。
  5. 使用javah生成.h文件, 出现无法访问android.app,Activity的错误的解决
  6. vue.js+boostrap
  7. Spring AOP代理时 ClassCastException: $Proxy0 cannot be cast to (类型转换错误)
  8. nuxt 运行项目后 中总是报错
  9. JS中常见设计模式总结
  10. 本人AI知识体系导航 - AI menu
  11. 单片机如何产生PWM信号
  12. istringstream、ostringstream、stringstream 类介绍 和 stringstream类 clear函数的真正用途
  13. 1207 ACM 汉诺塔II 数学
  14. zk请求和响应对
  15. Python 析构方法__del__
  16. c# 执行 CreateHandle() 时无法调用值 Dispose()
  17. jquery问题汇总
  18. Proposition
  19. 文件i/o函数 open/close
  20. POJ 1375 Intervals | 解析几何

热门文章

  1. GDP与股市市值
  2. sort quick
  3. struts2 小例子(教训篇)
  4. idea提交新项目到远程git创库
  5. 怎样编写高质量的 Java 代码
  6. linux 中的局部变量、全局变量、shell 变量的总结
  7. JavaScript-Tool:validate.js-un
  8. MVC错误:查询的结果不能枚举多次
  9. 《Kubernetes权威指南第2版》学习(二)一个简单的例子
  10. C/C++学习笔记1