Codeforces 766E Mahmoud and a xor trip(树形DP)
生活随笔
收集整理的這篇文章主要介紹了
Codeforces 766E Mahmoud and a xor trip(树形DP)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目鏈接 Mahmoud and a xor trip
樹形DP。先考慮每個點到他本身的距離和,再算所有點兩兩距離和。
做的時候考慮二進制拆位即可。
#include <bits/stdc++.h>using namespace std;#define REP(i, n) for(int i(0); i < (n); ++i) #define rep(i, a, b) for(int i(a); i <= (b); ++i) #define LL long longconst int N = 100000 + 10;int a[N]; int n, x, y; LL dp[2][20][N]; LL ans; vector <int> v[N];void dfs(int x, int fa){REP(i, 20) dp[(a[x] >> i) & 1][i][x] = 1;for (auto it : v[x]){if (it == fa) continue;dfs(it, x);REP(i, 20) ans += (1LL << i) * (dp[0][i][x] * dp[1][i][it] + dp[1][i][x] * dp[0][i][it]);REP(i, 20){dp[((a[x] >> i) & 1)][i][x] += dp[0][i][it];dp[(((a[x] >> i) & 1)) ^ 1][i][x] += dp[1][i][it];}} }int main(){scanf("%d", &n);rep(i, 1, n) scanf("%d", a + i), ans += (LL)a[i];rep(i, 1, n - 1){scanf("%d%d", &x, &y);v[x].push_back(y); v[y].push_back(x);}dfs(1, 1);printf("%lld\n", ans);return 0;}?
轉載于:https://www.cnblogs.com/cxhscst2/p/6676851.html
總結
以上是生活随笔為你收集整理的Codeforces 766E Mahmoud and a xor trip(树形DP)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Jquery函数大全 - 案例说明
- 下一篇: SVN报错working copy is