E. Mahmoud and a xor trip----树形DP

来源:互联网 发布:湘妹子的特点 知乎 编辑:程序博客网 时间:2024/05/29 15:38

E. Mahmoud and a xor trip
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 andy). 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 u and 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
31 2 31 22 3
output
10
input
51 2 3 4 51 22 33 43 5
output
52
input
510 9 8 7 61 22 33 43 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 xor operation 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.

题目链接:http://codeforces.com/contest/766/problem/E


好难的树dp,我已经快是个废C~K了,这两天补了两个e,发现我还差得好远。。。


题目的意思很好理解,有n个城市,n-1条边,每个城市有一个权值,求这个图的异或和。

先放上qscqesze学姐的链接:http://www.cnblogs.com/qscqesze/p/6378392.html


具体的看学姐的链接,我用代码讲题解吧。

这个题感谢静哥,感谢qscqesze学姐,感谢萌新,感谢Q神脑残粉


代码:

#include <cstring>#include <cstdio>#include <iostream>#include <vector>using namespace std;const int MAXN=1e5+7;int a[MAXN];//每个点的权值vector<int >G[MAXN];//存图long long res,sum;//计算两种情况的异或和int n;int num[MAXN][2];//记录i的二进制的0和1的个数void dfs(int x,int f,int bit){//当前节点,父节点,第几位    int t=(a[x]>>bit)&1;//求解t是1还是0    num[x][t]=1,num[x][t^1]=0;//巧解初始化    long long s=0;    for(int i=0;i<(int )G[x].size();i++){        int v=G[x][i];        if(v==f)            continue;        dfs(v,x,bit);        s+=num[x][1]*num[v][0]+num[x][0]*num[v][1];//仔细想一下,这里是0^1和1^0的结果        num[x][t^0]+=num[v][0];//这里的t^0很奇妙,是指当前节点的异或和的1和0的个数,细想,qscqesze学姐说脑补,        num[x][t^1]+=num[v][1];//然而还是静哥给我讲的    }    res+=s<<bit;}int main(){    scanf("%d",&n);    sum=res=0;    for(int i=1;i<=n;i++){        scanf("%d",&a[i]);        sum+=a[i];    }    for(int i=0;i<n-1;i++){        int x,y;                scanf("%d%d",&x,&y);        G[x].push_back(y);        G[y].push_back(x);    }    for(int i=0;i<=30;i++){//拆位        dfs(1,0,i);    }    cout<<sum+res<<endl;    return 0;}


0 0