Codeforces Round #396 (Div. 2) E. Mahmoud and a xor trip dfs 按位考虑

E. Mahmoud and a xor trip

题目连接:

http://codeforces.com/contest/766/problem/E

Description

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  ≤  n, u  ≠  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.

Sample Input

3
1 2 3
1 2
2 3

Sample Output

10

Hint

题意

给你一棵树,点权,让你输出所有路径的异或和的和。

题解:

因为是点权,和边权不一样的是要考虑LCA的影响,所以我们这样做:

异或我们把数的二进制每一位单独拿出来考虑就好了。

dfs考虑每一个点作为LCA的答案是多少,不停走下去就好了,记录下0和1的数量。


#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>

using namespace std;

int a[100005];

int head[100005];

struct node
{
    int u,v,nex;
}edge[200005];
int cnt;
long long ans;
void add(int u,int v)
{
    edge[cnt].u=u;
    edge[cnt].v=v;
    edge[cnt].nex=head[u];
    head[u]=cnt++;
}

long long num[100005][2];

void dfs(int u,int fa,int bit)
{
    int t=(a[u]>>bit)&(1);
    num[u][t]=1;
    num[u][t^1]=0;

    long long sum=0;

    for(int i=head[u];i!=-1;i=edge[i].nex)
    {
        int v=edge[i].v;
        if(v==fa)
            continue;

        dfs(v,u,bit);
        sum+=(num[u][0]*num[v][1]+num[u][1]*num[v][0]);
        num[u][0^t]+=num[v][0];
        num[u][1^t]+=num[v][1];

    }

    ans+=(long long)sum*(1<<bit);

}


int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        cnt=0;
        ans=0;
        for(int i=1;i<=n;i++)
        {
            head[i]=-1;
            scanf("%d",&a[i]);
            ans+=a[i];
        }

        for(int i=0;i<n-1;i++)
        {
            int u,v;
            scanf("%d%d",&u,&v);
            add(u,v);
            add(v,u);
        }


        for(int i=0;i<30;i++)
        {
            dfs(1,-1,i);
        }
        printf("%lld\n",ans);
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值