数据结构(线段树):Educational Codeforces Round 6 620E. New Year Tree

时间:2021-03-08 02:53:54
E. New Year Tree
time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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

  用DFS序与线段树维护子树信息。

 #include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
const int N=;
int cnt,fir[N],nxt[N*],to[N*],c[N];
int ID[N],rID[N],ED[N],tag[N<<],tot;
long long t[N<<];int n,Q;
void addedge(int a,int b){
nxt[++cnt]=fir[a];
to[fir[a]=cnt]=b;
} void DFS(int x,int fa){
rID[ID[x]=++tot]=x;
for(int i=fir[x];i;i=nxt[i])
if(to[i]!=fa)DFS(to[i],x);
ED[x]=tot;
} void Push_up(int x){t[x]=t[x<<]|t[x<<|];}
void Mark(int x,long long d){tag[x]=;t[x]=d;}
void Push_down(int x){
if(tag[x]){
Mark(x<<,t[x]);
Mark(x<<|,t[x]);
}tag[x]=;
}
#define mid ((l+r)>>1)
void Build(int x,int l,int r){
if(l==r){t[x]=1ll<<(c[rID[l]]-);return;}
Build(x<<,l,mid);Build(x<<|,mid+,r);
Push_up(x);
}
void Update(int x,int l,int r,int a,int b,int d){
if(l>=a&&r<=b){Mark(x,1ll<<(d-));return;}Push_down(x);
if(mid>=a)Update(x<<,l,mid,a,b,d);
if(mid<b)Update(x<<|,mid+,r,a,b,d);
Push_up(x);
} long long Query(int x,int l,int r,int a,int b){
if(l>=a&&r<=b)return t[x];
long long ret=;Push_down(x);
if(mid>=a)ret=Query(x<<,l,mid,a,b);
if(mid<b)ret|=Query(x<<|,mid+,r,a,b);
return ret;
} int tp,x,d;
int main(){
scanf("%d%d",&n,&Q);
for(int i=;i<=n;i++)
scanf("%d",&c[i]);
for(int i=,a,b;i<n;i++){
scanf("%d%d",&a,&b);
addedge(a,b);
addedge(b,a);
}
DFS(,);
Build(,,n);
while(Q--){
scanf("%d",&tp);
if(tp==){
scanf("%d%d",&x,&d);
Update(,,n,ID[x],ED[x],d);
}
else{
scanf("%d",&x);int ans=;
long long sum=Query(,,n,ID[x],ED[x]);
for(int i=;i<;i++)if(sum>>i&)ans++;
printf("%d\n",ans);
}
}
}

数据结构(线段树):Educational Codeforces Round 6 620E. New Year Tree的更多相关文章

  1. Multidimensional Queries(二进制枚举&plus;线段树&plus;Educational Codeforces Round 56 &lpar;Rated for Div&period; 2&rpar;)

    题目链接: https://codeforces.com/contest/1093/problem/G 题目: 题意: 在k维空间中有n个点,每次给你两种操作,一种是将某一个点的坐标改为另一个坐标,一 ...

  2. Educational Codeforces Round 6 E&period; New Year Tree dfs&plus;线段树

    题目链接:http://codeforces.com/contest/620/problem/E E. New Year Tree time limit per test 3 seconds memo ...

  3. 分块&plus;lazy 或者 线段树&plus;lazy Codeforces Round &num;254 &lpar;Div&period; 2&rpar; E

    E. DZY Loves Colors time limit per test 2 seconds memory limit per test 256 megabytes input standard ...

  4. 【动态规划】【线段树】 Codeforces Round &num;426 &lpar;Div&period; 1&rpar; B&period; The Bakery

    给你一个序列,让你划分成K段,每段的价值是其内部权值的种类数,让你最大化所有段的价值之和. 裸dp f(i,j)=max{f(k,j-1)+w(k+1,i)}(0<=k<i) 先枚举j,然 ...

  5. 【线段树】Codeforces Round &num;393 &lpar;Div&period; 1&rpar; C&period; Nikita and stack

    就是给你一些元素的进栈 出栈操作,不按给定的顺序,要求你对于每次输入,都依据其及其之前的输入,判断出栈顶的元素是谁. 用线段树维护,每次push,将其位置的值+1,pop,将其位置的值-1.相当于寻找 ...

  6. Educational Codeforces Round 3 E&period; Minimum spanning tree for each edge 最小生成树&plus;树链剖分&plus;线段树

    E. Minimum spanning tree for each edge time limit per test 2 seconds memory limit per test 256 megab ...

  7. Educational Codeforces Round 3 E&period; Minimum spanning tree for each edge LCA&sol;&lpar;树链剖分&plus;数据结构&rpar; &plus; MST

    E. Minimum spanning tree for each edge   Connected undirected weighted graph without self-loops and ...

  8. Educational Codeforces Round 3 E&period; Minimum spanning tree for each edge &lpar;最小生成树&plus;树链剖分&rpar;

    题目链接:http://codeforces.com/contest/609/problem/E 给你n个点,m条边. 问枚举每条边,问你加这条边的前提下组成生成树的权值最小的树的权值和是多少. 先求 ...

  9. CF Educational Codeforces Round 3 E&period; Minimum spanning tree for each edge 最小生成树变种

    题目链接:http://codeforces.com/problemset/problem/609/E 大致就是有一棵树,对于每一条边,询问包含这条边,最小的一个生成树的权值. 做法就是先求一次最小生 ...

随机推荐

  1. SQL Server表分区的NULL值问题

    SQL Server表分区的NULL值问题 SQL Server表分区只支持range分区这一种类型,但是本人觉得已经够用了 虽然MySQL支持四种分区类型:RANGE分区.LIST分区.HASH分区 ...

  2. 《DSP using MATLAB》示例Example4&period;12

    上代码: b = [0, 1, 1]; a = [1, -0.9, 0.81]; % [R, p, C] = residuez(b,a); Mp = (abs(p))' Ap = (angle(p)) ...

  3. 山东理工大学第七届ACM校赛-最大收益问题 分类: 比赛 2015-06-26 10&colon;25 51人阅读 评论&lpar;0&rpar; 收藏

    最大收益问题 Time Limit: 2000ms Memory limit: 65536K 有疑问?点这里^_^ 题目描述 铁牌狗最近迷上了一款游戏,但铁牌狗实在是太笨了,他还是要请求你的帮助. 有 ...

  4. IIS 发布程序的一些心得

    1.应用程序池一般自己建立对应Framework版本的程序池,并托管管道模式为经典 2.在IIS根目录双击,右侧的“ISAPI和CGI限制” 双击打开,将自己所需要的Framework版本的限制设置为 ...

  5. JS精确到小数点两位

    1.会四色五入 var num =2.446242342; num = num.toFixed(2); // 输出结果为 2.452.正则Number(15.7784514000.toString() ...

  6. Random Teams

    n participants of the competition were split into m teams in some manner so that each team has at le ...

  7. spring boot&plus;mybaits&plus;mysql&plus;generato&lpar;逆向工程&rpar;&plus;前后台数据交互

    如按照我博客上没有弄出来 请在下面留言 我好修改 谢谢 小弟使用的是Eclipse 首先下载STS插件 help--->Elipse Marketplace--->find搜索栏里面搜索S ...

  8. python的学习笔记&lowbar;&lowbar;初识函数

    函数定义与调用 #函数定义 def mylen(): """计算s1的长度""" s1 = "hello world" ...

  9. Java基础-时间复杂度计算方式

    Java基础-时间复杂度计算方式 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任.   时间复杂度通常是衡量算法的优劣的,衡量算法的时间严格来讲是很难衡量的,由于不同的机器性能不用环境 ...

  10. gitlab改变服务器ip

    一./home/git/gitlab/config/unicorn.rb 其中的ip需要修改,否则unicorn无法启动. 二./home/git/gitlab-shell/config.yml 其中 ...