link

题目大意:给定一个n个点的树,每个点都有一个字符(a-t,20个字符)

我们称一个路径是神犇的,当这个路径上所有点的字母的某个排列是回文

求出对于每个点,求出经过他的神犇路径的数量

题解:

对于回文串,我们发现最多允许1个字母出现了奇数次,和%2有关

并且由于只有20个字母,说到20我就想起了二进制状压,我们对于一条链状压成20维的01向量,表示某个字符出现的次数是奇数还是偶数

说到树上静态问题我就想起淀粉质

我们考虑静态淀粉质,对于当前的树我们找出他的重心rt,然后对于每个子树DFS一下,求出某个子树到rt的路径上的所有权值(开个桶)

然后对于某个子树,在桶内减去这个子树对应的权值之后,xjb统计一下有多少个点到他路径是合法的,打个标记,然后在rt为根的树搞个树上差分就行了

然后点分下去就行了

#include <cstdio>
#include <vector>
using namespace std; int n, sz[200010], mxsz[200010], col[200010], sum, rt;
int bucket[1050000];
long long ans[200010], tmp[200010];
char str[200010];
bool vis[200010];
vector<int> out[200010]; void chkmax(int &a, int b) { if (a < b) a = b; } void getrt(int x, int fa)
{
sz[x] = 1, mxsz[x] = 0;
for (int i : out[x]) if (vis[i] == false && i != fa)
getrt(i, x), sz[x] += sz[i], chkmax(mxsz[x], sz[i]);
chkmax(mxsz[x], sum - sz[x]);
if (mxsz[x] < mxsz[rt]) rt = x;
} void getval(int x, int fa, int flag, int dis)
{
bucket[dis ^ col[x]] += flag;
for (int i : out[x]) if (vis[i] == false && fa != i) getval(i, x, flag, dis ^ col[x]);
} void qsum(int x, int fa, int dis)
{
int cur = dis ^ col[x]; tmp[x] = bucket[cur];
for (int i = 0; i < 20; i++) tmp[x] += bucket[cur ^ (1 << i)];
for (int i : out[x]) if (vis[i] == false && fa != i) qsum(i, x, cur);
} void qdis(int x, int fa)
{
for (int i : out[x]) if (vis[i] == false && fa != i) qdis(i, x), tmp[x] += tmp[i];
ans[x] += tmp[x] / ((x == rt) + 1);
} void solve(int x)
{
vis[x] = true;
for (int i : out[x]) if (vis[i] == false) getval(i, x, 1, 0);
bucket[0]++;
for (int i : out[x]) if (vis[i] == false)
getval(i, x, -1, 0), qsum(i, x, col[x]), getval(i, x, 1, 0);
bucket[0]--;
tmp[x] = bucket[col[x]];
for (int i = 0; i < 20; i++) tmp[x] += bucket[col[x] ^ (1 << i)];
qdis(x, 0);
for (int i : out[x]) if (vis[i] == false) getval(i, x, -1, 0);
for (int i : out[x]) if (vis[i] == false) rt = 0, sum = sz[i], getrt(i, 0), solve(rt);
} int main()
{
scanf("%d", &n);
for (int x, y, i = 1; i < n; i++)
scanf("%d%d", &x, &y), out[x].push_back(y), out[y].push_back(x);
scanf("%s", str + 1);
for (int i = 1; i <= n; i++) col[i] = (1 << (str[i] - 97));
mxsz[0] = sum = n, getrt(1, 0), solve(rt);
for (int i = 1; i <= n; i++) printf("%lld ", ans[i] + 1);
return 0;
}

CF914E Palindromes in a Tree(点分治)的更多相关文章

  1. 【CodeForces】914 E. Palindromes in a Tree 点分治

    [题目]E. Palindromes in a Tree [题意]给定一棵树,每个点都有一个a~t的字符,一条路径回文定义为路径上的字符存在一个排列构成回文串,求经过每个点的回文路径数.n<=2 ...

  2. CF914E Palindromes in a Tree(点分治)

    题面 洛谷 CF 题解 题意:给你一颗 n 个顶点的树(连通无环图).顶点从 1 到 n 编号,并且每个顶点对应一个在'a'到't'的字母. 树上的一条路径是回文是指至少有一个对应字母的排列为回文. ...

  3. CF914E Palindromes in a Tree

    $ \color{#0066ff}{ 题目描述 }$ 给你一颗 n 个顶点的树(连通无环图).顶点从 1 到 n 编号,并且每个顶点对应一个在'a'到't'的字母. 树上的一条路径是回文是指至少有一个 ...

  4. codeforces 914E Palindromes in a Tree(点分治)

    You are given a tree (a connected acyclic undirected graph) of n vertices. Vertices are numbered fro ...

  5. 【BZOJ-1468】Tree 树分治

    1468: Tree Time Limit: 10 Sec  Memory Limit: 64 MBSubmit: 1025  Solved: 534[Submit][Status][Discuss] ...

  6. HDU 4812 D Tree 树分治+逆元处理

    D Tree Problem Description   There is a skyscraping tree standing on the playground of Nanjing Unive ...

  7. POJ 1741 Tree 树分治

    Tree     Description Give a tree with n vertices,each edge has a length(positive integer less than 1 ...

  8. [bzoj 1468][poj 1741]Tree [点分治]

    Description Give a tree with n vertices,each edge has a length(positive integer less than 1001). Def ...

  9. 【CF434E】Furukawa Nagisa's Tree 点分治

    [CF434E]Furukawa Nagisa's Tree 题意:一棵n个点的树,点有点权.定义$G(a,b)$表示:我们将树上从a走到b经过的点都拿出来,设这些点的点权分别为$z_0,z_1... ...

随机推荐

  1. Vulkan Tutorial 09 图像与视图

    操作系统:Windows8.1 显卡:Nivida GTX965M 开发工具:Visual Studio 2017 使用任何的VkImage,包括在交换链或者渲染管线中的,我们都需要创建VkImage ...

  2. Write your first jQuery plugin

    本文固定链接: http://www.jquery.org.cn/archives/380 一般来说,jQuery插件的开发分为两种:一种是挂在jQuery命名空间下的全局函数,也可称为静态方法:另一 ...

  3. 【FZU2278】YYS

    题意 这里有n种卡片,如果你想得到一张新的卡片,你需要花费W枚硬币来抽一张卡片.每次只能抽一张.所有的卡片出现的概率都是1/n,你每天可以得到1枚硬币.初始时候没有硬币也没有卡片.每W天,你就会抽一张 ...

  4. ubuntu 12.04下搭建web服务器(MySQL+PHP+Apache) 教程

    最近,经理让我搭建一个服务器,我从网上找了一篇比较好的教程,按教程一步步执行感觉挺顺利,所以准备整理一下这个教程.尊重原版注明出处:http://news.2ky.cn/Linux/ubuntu-12 ...

  5. 面试题:cook和session

    1.首先,Cookie与Session存在的目的是什么? 答:二者都是为了保持客户端访问用户与后台服务器的交互状态,之所以为了保持这种状态,一是为了方便一些业务的实现,另一方面就是为了简化后台服务端的 ...

  6. 怎样使用Mock Server

    转载自:http://www.cnblogs.com/111testing/p/6091460.html 怎样使用Mock Server   一,去这里https://github.com/dream ...

  7. 19、SOAP安装,运用与比对结果解释

    转载:http://www.dengfeilong.com/post/Soap2.html https://blog.csdn.net/zhu_si_tao/article/details/71108 ...

  8. Yii2中ACF和RBAC

    ACF ( Access Control Filter) ACF ( Access Control Filter)官网的解释就是一个可以在模型或控制器执行行为过滤器,当有用户请求时,ACF将检查acc ...

  9. hibernate mapping文件中 xmlns会导致linq to xml 查询不到对应的节点

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  10. does not name a type

    一般都与头文件有关 1.缺少using namespaces std: 2.头文件的地方不对. 3.加错了头文件,还会出现内部函数库的报错.有的函数被多个函数库包含