The New Year holidays are over, but Resha doesn't want to throw away the New Year tree. He invited his best friends Kerim and Gural to help him to redecorate the New Year tree.

The New Year tree is an undirected tree with n vertices and root in the vertex 1.

You should process the queries of the two types:

  1. Change the colours of all vertices in the subtree of the vertex v to the colour c.
  2. Find the number of different colours in the subtree of the vertex v.
Input

The first line contains two integers n, m (1 ≤ n, m ≤ 4·105) — the number of vertices in the tree and the number of the queries.

The second line contains n integers ci (1 ≤ ci ≤ 60) — the colour of the i-th vertex.

Each of the next n - 1 lines contains two integers xj, yj (1 ≤ xj, yj ≤ n) — the vertices of the j-th edge. It is guaranteed that you are given correct undirected tree.

The last m lines contains the description of the queries. Each description starts with the integer tk (1 ≤ tk ≤ 2) — the type of the k-th query. For the queries of the first type then follows two integers vk, ck (1 ≤ vk ≤ n, 1 ≤ ck ≤ 60) — the number of the vertex whose subtree will be recoloured with the colour ck. For the queries of the second type then follows integer vk (1 ≤ vk ≤ n) — the number of the vertex for which subtree you should find the number of different colours.

Output

For each query of the second type print the integer a — the number of different colours in the subtree of the vertex given in the query.

Each of the numbers should be printed on a separate line in order of query appearing in the input.

Examples
input
7 10
1 1 1 1 1 1 1
1 2
1 3
1 4
3 5
3 6
3 7
1 3 2
2 1
1 4 3
2 1
1 2 5
2 1
1 6 4
2 1
2 2
2 3
output
2
3
4
5
1
2
input
23 30
1 2 2 6 5 3 2 1 1 1 2 4 5 3 4 4 3 3 3 3 3 4 6
1 2
1 3
1 4
2 5
2 6
3 7
3 8
4 9
4 10
4 11
6 12
6 13
7 14
7 15
7 16
8 17
8 18
10 19
10 20
10 21
11 22
11 23
2 1
2 5
2 6
2 7
2 8
2 9
2 10
2 11
2 4
1 12 1
1 13 1
1 14 1
1 15 1
1 16 1
1 17 1
1 18 1
1 19 1
1 20 1
1 21 1
1 22 1
1 23 1
2 1
2 5
2 6
2 7
2 8
2 9
2 10
2 11
2 4
output
6
1
3
3
2
1
2
3
5
5
1
2
2
1
1
1
2
3

题意:来自费老先生的翻译
你有一棵以1为根的有根树,有n个点,每个节点初始有一个颜色c[i]。


有两种操作:

1 v c 将以v为根的子树中所有点颜色更改为c

2 v 查询以v为根的子树中的节点有多少种不同的颜色


题解:来自蒟蒻xhk的题解:

我们看到这道题的颜色最多只有60种,所以理所应当的想到突破口就是颜色,60的范围可以考虑状压,其实我们在乎的只是有或者没有该颜色,所以我们可以用或运算来合并两个块,这自然是线段树的思路,

因为只有修改子树或者查询子树的操作,所以直接dfs序就可以啦~
对dfs序维护一个线段树,支持区间修改区间或,统计区间或之后得到的数在二进制下1的个数,这即为答案

代码如下:

#include<cstdio>
#include<vector>
#include<cstring>
#include<iostream>
#include<algorithm>
#define lson root<<1
#define rson root<<1|1
using namespace std; struct node
{
int l,r;
long long sum,lazy;
} tr[]; vector<int> g[];
int dfsn[],c[],w[],size[],tot; int get_bit(long long x)
{
int ans=;
while(x)
{
if(x&)
{
ans++;
}
x>>=;
}
return ans;
} void push_up(int root)
{
tr[root].sum=tr[lson].sum|tr[rson].sum;
} void push_down(int root)
{
tr[lson].sum=tr[root].lazy;
tr[rson].sum=tr[root].lazy;
tr[lson].lazy=tr[root].lazy;
tr[rson].lazy=tr[root].lazy;
tr[root].lazy=-;
} void build(int root,int l,int r)
{
if(l==r)
{
tr[root].l=l;
tr[root].r=r;
tr[root].lazy=-;
tr[root].sum=1ll<<c[l];
return ;
}
tr[root].l=l;
tr[root].r=r;
tr[root].lazy=-;
int mid=(l+r)>>;
build(lson,l,mid);
build(rson,mid+,r);
push_up(root);
} void update(int root,int l,int r,int val)
{
if(tr[root].l==l&&tr[root].r==r)
{
tr[root].sum=1ll<<val;
tr[root].lazy=1ll<<val;
return ;
}
if(~tr[root].lazy)
{
push_down(root);
}
int mid=(tr[root].l+tr[root].r)>>;
if(l>mid)
{
update(rson,l,r,val);
}
else
{
if(r<=mid)
{
update(lson,l,r,val);
}
else
{
update(lson,l,mid,val);
update(rson,mid+,r,val);
}
}
push_up(root);
} long long query(int root,int l,int r)
{
if(tr[root].l==l&&tr[root].r==r)
{
return tr[root].sum;
}
if(~tr[root].lazy)
{
push_down(root);
}
int mid=(tr[root].l+tr[root].r)>>;
if(l>mid)
{
return query(rson,l,r);
}
else
{
if(r<=mid)
{
return query(lson,l,r);
}
else
{
return query(lson,l,mid)|query(rson,mid+,r);
}
}
} void dfs(int now,int f)
{
dfsn[now]=++tot;
size[now]=;
c[tot]=w[now];
for(int i=;i<g[now].size();i++)
{
if(g[now][i]==f)
{
continue;
}
dfs(g[now][i],now);
size[now]+=size[g[now][i]];
}
} int main()
{
int n,m;
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++)
{
scanf("%d",&w[i]);
}
for(int i=;i<n;i++)
{
int from,to;
scanf("%d%d",&from,&to);
g[from].push_back(to);
g[to].push_back(from);
} dfs(,);
build(,,n); for(int i=;i<=m;i++)
{
int kd;
scanf("%d",&kd);
if(kd==)
{
int v,val;
scanf("%d%d",&v,&val);
update(,dfsn[v],dfsn[v]+size[v]-,val);
}
if(kd==)
{
int v;
scanf("%d",&v);
printf("%d\n",get_bit(query(,dfsn[v],dfsn[v]+size[v]-)));
}
}
}
 

最新文章

  1. linux启动过程分析
  2. 一堆LCT板子
  3. destoon二次开发基础代码
  4. NSTimer内存泄漏导致控制器不调用dealloc
  5. OpenStack 之vmware机器迁移到openstack集群
  6. VC编译错误:一个或多个多重定义的符号
  7. Spring MVC - log4j 配置
  8. Reactive native 项目创建失败如何处理
  9. oracle 11g 64位安装sqldeveloper打开不了
  10. iOS svn版本回退 cornerstone
  11. Oracle 表空间操作
  12. 一步步优化JVM六:优化吞吐量
  13. Hadoop-2.x启动HDFS和YARN的方式
  14. Android 快速开发系列 ORMLite 框架最佳实践
  15. tcp/ip详解 卷1 -- 协议概述
  16. Doctype的作用?严格模式与混合模式,如何触发者这两种模式,区分它们有何意义?
  17. 深入浅出mybatis之缓存机制
  18. js实现把网页table导成Excel(bootstrap、JqGrid、Json)
  19. Mac ssh启动和停止
  20. 实用的JavaScript手册

热门文章

  1. ISIS与OSPF的区别与联系
  2. 移动终端App测试点归纳
  3. 关于Floyd-Warshall算法由前趋矩阵计算出的最短路径反映出了算法的执行过程特性的证明
  4. [z]IE6各种不兼容问题
  5. scrapy框架的持久化存储
  6. ZooKeeper与仲裁模式
  7. C#模板的效率问题
  8. MySQL Innodb 神秘消失
  9. MaperReduce实验
  10. java算法 第七届 蓝桥杯B组(题+答案) 2.生日蜡烛