博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 6035---Colorful Tree(树形DP)
阅读量:5291 次
发布时间:2019-06-14

本文共 1761 字,大约阅读时间需要 5 分钟。

 

Problem Description
There is a tree with 
n nodes, each of which has a type of color represented by an integer, where the color of node i is ci.
The path between each two different nodes is unique, of which we define the value as the number of different colors appearing in it.
Calculate the sum of values of all paths on the tree that has n(n1)2 paths in total.
 

 

Input
The input contains multiple test cases.
For each test case, the first line contains one positive integers 
n, indicating the number of node. (2n200000)
Next line contains n integers where the i-th integer represents ci, the color of node i(1cin)
Each of the next n1 lines contains two positive integers x,y (1x,yn,xy), meaning an edge between node x and node y.
It is guaranteed that these edges form a tree.
 

 

Output
For each test case, output "
Case #xy" in one line (without quotes), where 
x indicates the case number starting from 1 and y denotes the answer of corresponding case.
 

 

Sample Input
3
1 2 1
1 2
2 3
6
1 2 1 3 2 1
1 2
1 3
2 4
2 5
3 6
 
 
Sample Output
Case #1: 6
Case #2: 29
 
题意:有一棵n个节点的树,编号从 1 到 n ,每个节点涂有一种颜色ci (1<=ci<=n),对于树上的每条路径有个值,表示这条路径上的颜色种类数,现在对树上所有的路径值求和。
 
思路:可以转换一下题目描述,即求包含颜色ci的路径数,然后对所有颜色求和即可。这样求依然不好计算,可以反向考虑, 包含颜色ci的路径数=n*(n-1)/2 - 不包含颜色ci的路径数,求不包含颜色ci的路径数 即为颜色ci将整棵树分成一个个的联通块,对每个联通块,如果包含节点数为x,即为C(x,2),对所有联通块求和;
 
代码如下:
#include 
#include
#include
#include
#include
using namespace std;typedef long long LL;const int N=200005;int c[N],sum[N],sz[N];vector
t[N];LL ans;int dfs(int u,int pa){ sz[u]=1; int cn=t[u].size(); for(int i=0;i

 

转载于:https://www.cnblogs.com/chen9510/p/7258453.html

你可能感兴趣的文章
angular中ng-bind指令小案例
查看>>
jqery总结
查看>>
Lodop获取客户端主网卡ip地址是0.0.0.0
查看>>
VSCODE更改文件时,提示:EACCES: permission denied的解决办法(mac电脑系统)
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>
微信小程序开发初体验
查看>>
dos批处理(bat)运行exe
查看>>
关键字
查看>>
Pycharm安装Markdown插件
查看>>
上传图片并预览
查看>>
哈夫曼编码_静态库
查看>>
【转】redo与undo
查看>>
C#更新程序设计
查看>>
常用Request对象获取请求信息
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Shell命令-内置命令及其它之watch、date
查看>>
Java Session 介绍;
查看>>
spoj TBATTLE 质因数分解+二分
查看>>
Django 模型层
查看>>