【HDU - 5977】Garden of Eden(树分治)

题干:

When God made the first man, he put him on a beautiful garden, the Garden of Eden. Here Adam lived with all animals. God gave Adam eternal life. But Adam was lonely in the garden, so God made Eve. When Adam was asleep one night, God took a rib from him and made Eve beside him. God said to them, “here in the Garden, you can do everything, but you cannot eat apples from the tree of knowledge.” 
One day, Satan came to the garden. He changed into a snake and went to live in the tree of knowledge. When Eve came near the tree someday, the snake called her. He gave her an apple and persuaded her to eat it. Eve took a bite, and then she took the apple to Adam. And Adam ate it, too. Finally, they were driven out by God and began a hard journey of life. 
The above is the story we are familiar with. But we imagine that Satan love knowledge more than doing bad things. In Garden of Eden, the tree of knowledge has n apples, and there are k varieties of apples on the tree. Satan wants to eat all kinds of apple to gets all kinds of knowledge.So he chooses a starting point in the tree,and starts walking along the edges of tree,and finally stops at a point in the tree(starting point and end point may be same).The same point can only be passed once.He wants to know how many different kinds of schemes he can choose to eat all kinds of apple. Two schemes are different when their starting points are different or ending points are different. 

Input

There are several cases.Process till end of input. 
For each case, the first line contains two integers n and k, denoting the number of apples on the tree and number of kinds of apple on the tree respectively. 
The second line contains n integers meaning the type of the i-th apple. Types are represented by integers between 1 and k . 
Each of the following n-1 lines contains two integers u and v,meaning there is one edge between u and v.1≤n≤50000, 1≤k≤10 

Output

For each case output your answer on a single line.

Sample Input

3 2
1 2 2
1 2
1 3

Sample Output

6

题目大意:

给定N个节点的树,每个节点有颜色,共k种颜色,求树上所有满足从i到j所经过的点包含了所有颜色的点对,(i,j)和(j,i)视为不同且i可以等于j。(N<=5e4,k<=10)

解题报告:

k=10,考虑状态压缩,最多可以(1<<(10)-1)种状态,利用树分治保存每个点到节点的路径状态。比求路径之和等于k的点对要简单,因为不需要容斥,可以用蓝书上第一种方法去求(按照子树顺序分别处理),但是细节还是要注意,比如当前的根节点别被统计多次了,且别忘了从根节点当其中一个端点,开始往下一条链的那种情况,其实这种情况是不需要特判的,只需要在做当前根节点上的所有工作之前,让cnt[(1<<col[cur])]++即可。

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<stack>
#include<map>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define FF first
#define SS second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<int,int> PII;
const int MAX = 1e5 + 5;
int col[MAX],head[MAX],tot,size[MAX],n,k;
struct Node {int to,ne;
} e[MAX<<1];
bool vis[MAX];
int up,cnt[MAX],tmp[MAX];
void add(int u,int v) {e[++tot].to = v;e[tot].ne=head[u];head[u]=tot;
}
ll ans;
int rt,all,son[MAX];
//getRoot调用之前必须先rt=0; 
void getRoot(int cur,int fa) {size[cur]=1;son[cur]=0;for(int i = head[cur]; ~i; i = e[i].ne) {int v = e[i].to;if(v == fa || vis[v]) continue;getRoot(v,cur); size[cur] += size[v];son[cur] = max(son[cur],size[v]);}son[cur] = max(son[cur],all - size[cur]);//注意这里的all指的就是当前子树的节点个数 if(son[rt] == 0 || son[rt] > son[cur]) rt = cur;//值小,则更新根节点 
}
void gx(int cur,int fa) {size[cur]=1;for(int i = head[cur]; ~i; i = e[i].ne) {int v = e[i].to;if(v == fa || vis[v]) continue;gx(v,cur); size[cur] += size[v];}
}
void get(int cur,int fa,int sta) {tmp[sta]++;
//	if(sta == (up-1)) ans++;for(int bit = 0; bit<up; bit++) {if((bit|sta) == (up-1)) ans += cnt[bit];} for(int i = head[cur]; ~i; i = e[i].ne) {int v = e[i].to;if(v == fa || vis[v]) continue;get(v,cur,sta|(1<<col[v]));}
}
void cal(int cur) {for(int i = 0; i<up; i++) cnt[i] = 0;cnt[(1<<col[cur])]++;
//	get(cur,0,1<<col[cur]);//注意这里不能等效处理,因为cur的子节点需要特殊处理,因为我们需要一个子树一个子树的处理。 for(int i = head[cur]; ~i; i = e[i].ne) {int v = e[i].to; if(vis[v]) continue;for(int sta = 0; sta<up; sta++) tmp[sta]=0;
//		tmp[(1<<col[cur])]++;//不能在这里加!不然就重复了! get(v,cur,(1<<col[cur]) | (1<<col[v]));for(int sta = 0; sta<up; sta++) cnt[sta] += tmp[sta];}
}
void dfs(int cur) {rt=0; getRoot(cur,0); cur=rt;  vis[cur]=1; gx(cur,0);cal(cur);for(int i = head[cur]; ~i; i = e[i].ne) {int v = e[i].to;if(vis[v]) continue;all = size[v];  dfs(v); }
}
int main()
{while(~scanf("%d%d",&n,&k)) {tot=0; up = 1<<k; ans = 0;for(int i = 1; i<=n; i++) head[i] = -1,vis[i]=size[i]=0;for(int i = 1; i<=n; i++) scanf("%d",col+i),col[i]--; for(int u,v,i = 1; i<=n-1; i++) scanf("%d%d",&u,&v),add(u,v),add(v,u);if(k == 1) {printf("%lld\n",1LL*n*(n-1)+n);continue;}all=n; dfs(1);printf("%lld\n",ans*2); } return 0 ;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439580.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一步步编写操作系统 57 门、调用门与RPL序 2

接上文&#xff1a; 提供了4种门的原因是&#xff0c;它们都有各自的应用环境&#xff0c;但它们都是用来实现从低特权级的代码段转向高特权级的代码段&#xff0c;咱们这里也只讨论有关特权级的功用&#xff1a; 1.调用门 call和jmp指令后接调用门选择子为参数&#xff0c;以…

Coursera自动驾驶课程第15讲:GNSS and INS Sensing for Pose Estimation

在上一讲《Coursera自动驾驶课程第14讲&#xff1a;Linear and Nonlinear Kalman Filters》 我们学习了卡尔曼滤波相关知识&#xff0c;包括&#xff1a;线性卡尔曼滤波&#xff08;KF&#xff09;、扩展卡尔曼滤波&#xff08;EKF&#xff09;、误差卡尔曼滤波&#xff08;ES-…

【HDU - 3002】King of Destruction(无向图全局最小割,SW算法,模板题)

题干&#xff1a; Zhou xingxing is the successor of one style of kung fu called "Karate Kid".he is falling love with a beautiful judo student,after being humiliated by her boyfriend,a Taekwando master from Japan,Zhou is going to fight with his ri…

一步步编写操作系统 58 门、调用门与RPL序 3

接前文&#xff1a; 并不是任何当前特权级都可以使用门结构&#xff0c; 在使用门结构之前&#xff0c;处理器要例行公事做特权级检查&#xff0c;参与检查的不只是CPL和DPL&#xff0c;还有RPL&#xff0c;为了说清楚这个检查过程&#xff0c;咱们得先介绍下RPL。 RPL&#…

详解车道线检测数据集和模型 VIL-100: A New Dataset and A Baseline Model for Video Instance Lane Detection

本文介绍一个新的车道线数据集 VIL-100 和检测模型 MMA-Net&#xff0c;论文已收录于 ICCV2021&#xff0c;重点是理解本文提出的 LGMA 模块&#xff0c;用于聚合局部和全局记忆特征。 论文链接&#xff1a;https://arxiv.org/abs/2108.08482 项目链接&#xff1a;https://gi…

【HDU - 6081】度度熊的王国战略(SW算法,全局最小割)

题干&#xff1a; Problem Description 度度熊国王率领着喵哈哈族的勇士&#xff0c;准备进攻哗啦啦族。 哗啦啦族是一个强悍的民族&#xff0c;里面有充满智慧的谋士&#xff0c;拥有无穷力量的战士。 所以这一场战争&#xff0c;将会十分艰难。 为了更好的进攻哗啦啦族&#…

七天入门图像分割(1):图像分割综述

最近在研究自动驾驶视觉语义地图构建&#xff0c;因为要使用到语义分割技术&#xff0c;趁此机会学习了百度飞桨的图像分割课程&#xff0c;课程蛮好的&#xff0c;收获也蛮大的。 课程地址&#xff1a;https://aistudio.baidu.com/aistudio/course/introduce/1767 1. 课程简要…

一步步编写操作系统 59 cpu的IO特权级1

在保护模式下&#xff0c;处理器中的“阶级”不仅体现在数据和代码的访问&#xff0c;还体现在指令中。 一方面将指令分级的原因是&#xff0c;有些指令的执行对计算机有着严重的影响&#xff0c;它们只有在0特权级下被执行&#xff0c;因此被称为特权指令&#xff08;Privile…

重读经典:《ImageNet Classification with Deep Convolutional Neural Networks》

9年后重读深度学习奠基作之一&#xff1a;AlexNet【下】【论文精读】这两天偶然间在B站看了李沐博士对AlexNet论文的重新解读&#xff0c;收获满满。AlexNet是当今深度学习浪潮奠基作之一&#xff0c;发表在2012年。在视频中&#xff0c;李沐博士主要是分享了他的三步法快速读论…

一步步编写操作系统 60 cpu的IO特权级2 什么是驱动程序

用户程序可以在由操作系统加载时通过指定整个eflags设置&#xff0c;操作系统如何设置自己的IOPL呢&#xff0c;即使内核IOPL为0也得写进去eflags寄存器中才生效。可惜的是&#xff0c;没有直接读写eflags寄存器的指令&#xff0c;不过可以通过将栈中数据弹出到eflags寄存器中来…

详解惯性导航论文 RINS-W: Robust Inertial Navigation System on Wheels

本文介绍一篇惯性导航定位论文 RINS-W&#xff0c;论文发表于 IROS2019。在本论文中作者提出了仅使用一个IMU进行长时间惯性导航的方法。方法主要包括两个部分&#xff1a; 检测器使用循环神经网络来检测IMU的运动状况&#xff0c;如零速或零横向滑移&#xff1b;使用Invarian…

【HDU - 5988】Coding Contest(网络流费用流,改模板)

题干&#xff1a; A coding contest will be held in this university, in a huge playground. The whole playground would be divided into N blocks, and there would be M directed paths linking these blocks. The i-th path goes from the uiui-th block to the vivi-t…

一步步编写操作系统 61 任务状态段 TSS

I/O位图是位于TSS中的&#xff0c;它可以存在也可以不存在&#xff0c;它只是用来设置对某些特定端口的访问&#xff0c;没有它的话便默认为禁止访问所有端口。正是由于它可有可用&#xff0c;所以TSS的段界限TSS limit&#xff08;即实际大小-1&#xff09;并不固定。当TSS中不…

重读经典:《Deep Residual Learning for Image Recognition》

ResNet论文逐段精读【论文精读】这是李沐博士论文精读的第二篇论文&#xff0c;这次精读的论文是ResNet。ResNet 是 CVPR2016 的最佳论文&#xff0c;目前谷歌学术显示其被引用数已经达到了90000。 ResNet论文链接为&#xff1a;https://arxiv.org/abs/1512.03385。 1.第一遍 …

【CodeForces - 1131F 】Asya And Kittens(并查集,思维)

题干&#xff1a; Asya loves animals very much. Recently, she purchased nn kittens, enumerated them from 11 and nn and then put them into the cage. The cage consists of one row of nncells, enumerated with integers from 11 to nn from left to right. Adjacent…

关于Xldown和Xlup的用法(Excel VBA)

Xldown和xlup是一对组合&#xff0c;用于寻找某个区间中的非空单元格。 首先我们在单元格的前7行填入如下数据&#xff1a; A1单元格&#xff1a; A2单元格&#xff1a;2 A3单元格&#xff1a;3 A4单元格&#xff1a;4 A5单元格&#xff1a; A6单元格&#xff1a;6 A7单元格&am…

详解道路标记数据集 CeyMo: See More on Roads -- A Novel Benchmark Dataset for Road Marking Detection

本文介绍一个新的道路标记检测数据集&#xff0c;论文收录于 WACV2022。Ceymo数据集总共包含2887张图片&#xff0c;标注了11类共4706个道路标记实例&#xff0c;图片分辨率为 192010801920\times108019201080。其中&#xff0c;对于每一个道路标记实例&#xff0c;作者采用了三…

VBA类之一(初识类)

第一章 开头篇 ——认识类 Visual Basic是基于对象的编程(注&#xff1a;本文所有的代码和讨论将都以VB为基础模型&#xff0c;不过我会尽量使用一些大家在VBA中常见的例子来做说明的。)&#xff0c;所以我们常见的一些东西其实都与类有关。不…

【HDU - 5009】Paint Pearls(dp,链表优化dp)

题干&#xff1a; Lee has a string of n pearls. In the beginning, all the pearls have no color. He plans to color the pearls to make it more fascinating. He drew his ideal pattern of the string on a paper and asks for your help. In each operation, he sele…

动手学无人驾驶(7):车道线检测

最近在研究视觉语义地图&#xff0c;需要进行车道线检测&#xff0c;发现这篇车道线检测论文效果蛮好的 &#xff08;Ultra Fast Structure-aware Deep Lane Detection&#xff09;。论文作者在知乎上已经介绍过了&#xff1a;https://zhuanlan.zhihu.com/p/157530787&#xff…