CF620E New Year Tree 线段树 dfs序
luogu链接
题目大意:
有一个节点有颜色的树
操作1.修改子树的颜色
操作2.查询子树颜色的种类
注意,颜色种类小于60种
只有子树的操作,dfs序当然是最好的选择
dfs序列是什么,懒得讲了,自己搜吧
然后开两个数组,begin_和end_记录节点子树在dfs序数组中的开头和结尾
begin,end居然在cf是关键字,还好不是ccf,要不就死了
区间修改一个数,区间查询,线段树的傻逼操作
OK
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
#define ls rt<<1
#define rs rt<<1|1
#define ll long long
const int max4 = 2e6 + 7;
const int inf = 0x3f3f3f3f;
int n, m;
int w[max4], a[max4], begin_[max4], end_[max4];
struct node
{
int l, r, size, lazy;
ll z;
void color(int i)
{
z = z | (1LL << (i - 1));
}
void clear()
{
z = 0LL;
}
} e[max4];
struct edge_edge
{
int v, nxt;
} edge[max4];
int head[max4], e_tot;
void add_edge(int u, int v)
{
edge[++e_tot].v = v;
edge[e_tot].nxt = head[u];
head[u] = e_tot;
}
int count(ll z)
{
int js = 0;
for (; z;)
{
if (z & 1) js++;
z >>= 1;
}
return js;
}
int read()
{
int x = 0, f = 1; char s = getchar();
for (; s < '0' || s > '9'; s = getchar()) if (s == '-') f = -1;
for (; s >= '0' && s <= '9'; s = getchar()) x = x * 10 + s - '0';
return x * f;
}
void pushup(int rt)
{
e[rt].z = e[ls].z | e[rs].z;
}
void pushdown(int rt)
{
if (e[rt].lazy)
{
e[ls].clear();
e[rs].clear();
e[ls].color(e[rt].lazy);
e[rs].color(e[rt].lazy);
e[ls].lazy = e[rt].lazy;
e[rs].lazy = e[rt].lazy;
e[rt].lazy = 0;
}
}
void build(int l, int r, int rt)
{
e[rt].l = l, e[rt].r = r;
if (l == r)
{
e[rt].color(w[a[l]]);
return;
}
int mid = (l + r) >> 1;
build(l, mid, ls);
build(mid + 1, r, rs);
pushup(rt);
}
void update(int L, int R, int k, int rt)
{
if (L <= e[rt].l && e[rt].r <= R)
{
e[rt].clear();
e[rt].color(k);
e[rt].lazy = k;
return;
}
pushdown(rt);
int mid = (e[rt].l + e[rt].r) >> 1;
if (L <= mid) update(L, R, k, ls);
if (R > mid) update(L, R, k, rs);
pushup(rt);
}
ll query(int L, int R, int rt)
{
if (L <= e[rt].l && e[rt].r <= R)
{
return e[rt].z;
}
pushdown(rt);
int mid = (e[rt].l + e[rt].r) >> 1;
ll ans = 0;
if (L <= mid) ans = ans | query(L, R, ls);
if (R > mid) ans = ans | query(L, R, rs);
pushup(rt);
return ans;
}
void debug()
{
printf("debug\n");
printf(" %d\n", count(e[1].z));
printf(" %d %d\n", count(e[2].z), count(e[3].z) );
printf(" %d %d %d %d\n", count(e[4].z), count(e[5].z), count(e[6].z), count(e[7].z) );
printf(" %d %d %d %d %d %d %d %d\n", count(e[8].z),
count(e[9].z), count(e[10].z), count(e[11].z), count(e[12].z), count(e[13].z), count(e[14].z), count(e[15].z));
}
int js;
void dfs(int u, int f)
{
a[++js] = u;
begin_[u] = js;
for (int i = head[u]; i; i = edge[i].nxt)
{
int v = edge[i].v;
if (v == f) continue;
dfs(v, u);
}
end_[u] = js;
}
int main()
{
n = read(), m = read();
for (int i = 1; i <= n; ++i)
{
w[i] = read();
}
for (int i = 1; i < n; ++i)
{
int x = read(), y = read();
add_edge(x, y);
add_edge(y, x);
}
dfs(1, 0);
// cout << js << "\n";
// for (int i = 1; i <= n; ++i)
// {
// printf("%d ", a[i]);
// } puts("");
// for (int i = 1; i <= n; ++i)
// {
// printf("%d => %d~~%d\n", i, begin_[i], end_[i]);
// }
build(1, n, 1);
for (int i = 1; i <= m; ++i)
{
int tmp = read();
if (tmp == 1)
{
int a = read(), b = read();
update(begin_[a], end_[a], b, 1);
}
else
{
int a = read();
ll ans = query(begin_[a], end_[a], 1);
printf("%d\n", count(ans));
}
//debug();
}
return 0;
}
CF620E New Year Tree 线段树 dfs序的更多相关文章
- CF620E New Year Tree 线段树+dfs序+bitset
线段树维护 dfs 序是显然的. 暴力建 60 个线段树太慢,于是用 bitset 优化就好了 ~ code: #include <bits/stdc++.h> #define M 63 ...
- S - Query on a tree HDU - 3804 线段树+dfs序
S - Query on a tree HDU - 3804 离散化+权值线段树 题目大意:给你一棵树,让你求这棵树上询问的点到根节点直接最大小于等于val的长度. 这个题目和之前写的那个给你一棵 ...
- Tsinsen A1505. 树(张闻涛) 倍增LCA,可持久化线段树,DFS序
题目:http://www.tsinsen.com/A1505 A1505. 树(张闻涛) 时间限制:1.0s 内存限制:512.0MB 总提交次数:196 AC次数:65 平均分: ...
- 【XSY2534】【BZOJ4817】树点涂色 LCT 倍增 线段树 dfs序
题目大意 Bob有一棵\(n\)个点的有根树,其中\(1\)号点是根节点.Bob在每个点上涂了颜色,并且每个点上的颜色不同.定义一条路径的权值是:这条路径上的点(包括起点和终点)共有多少种不同的颜 ...
- BZOJ_3252_攻略_线段树+dfs序
BZOJ_3252_攻略_线段树+dfs序 Description 题目简述:树版[k取方格数] 众所周知,桂木桂马是攻略之神,开启攻略之神模式后,他可以同时攻略k部游戏.今天他得到了一款新游戏< ...
- 【bzoj4817】树点涂色 LCT+线段树+dfs序
Description Bob有一棵n个点的有根树,其中1号点是根节点.Bob在每个点上涂了颜色,并且每个点上的颜色不同.定义一条路 径的权值是:这条路径上的点(包括起点和终点)共有多少种不同的颜色. ...
- HDU 5692 线段树+dfs序
Snacks Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Sub ...
- 线段树+Dfs序【CF620E】New Year Tree
Description 你有一棵以1为根的有根树,有n个点,每个节点初始有一个颜色c[i]. 有两种操作: 1 v c 将以v为根的子树中所有点颜色更改为c 2 v 查询以v为根的子树中的节点有多少种 ...
- CF620E New Year Tree(树形+dfs序+线段树+状态压缩)
题目链接 题目大意 \(~~\)给出一棵 nn 个节点的树,根节点为 11.每个节点上有一种颜色 c\(_{i}\) 和m 次操作.操作有两种: \(~~~~\) 1. 1\(~\)u\(~\)c:将 ...
随机推荐
- 线性参照,M值的相关测试
怎样使用普通线要素获取带M值的线要素 怎样查看线要素各个折点上的M值,怎样导出为一张表 线性参照:http://resources.arcgis.com/zh-cn/help/main/10.2/in ...
- 在本机搭建vue-cli3项目
vue-cli3官方网址: https://cli.vuejs.org/zh/ 由于公司开始一个新项目,用到的是vue-cli3搭建的项目,所以自己想搭建一个项目,今天搭建的项目就是一个很简单的项目, ...
- php 中date显示时间不对与Linux文件乱码问题
php 中date显示时间不对解决办法如下1.修改/etc/php.ini文件 在里头中找到data.timezone =去掉它前面的分号';' 然后设置data.timezone = “Asia/S ...
- atitit. orm框架的hibernate 使用SQLQuery createSQLQuery addEntity
atitit. orm框架的hibernate 使用SQLQuery createSQLQuery addEntity 1. addEntity 对原生SQL查询运行的控制是通过SQLQuery接口进 ...
- BUG笔记:Android原生浏览器不认负百分数margin致Foundation Orbit往右滑动动画出错
一看这标题就知道无比蛋疼了是不?至少我从来不用安卓自带的浏览器... 发现这个bug的场景:万恶的Foundation,它的滚动图片插件Orbit在安卓自带浏览器下手指从左往右滑动时动画仍旧表现为从右 ...
- cookie与session的比较
首先来说一下什么是cookie:cookie是Web服务器保存在客户端的一系列文本信息: cookie的作用大致有三点:对特定对象的追踪,统计网页浏览次数,简化登陆. 它的安全性能是比较差的,容易泄露 ...
- 万恶之源 - Python文件操作
文件操作 初始文件操作 使用Python来读写文件是非常简单的操作,我们使用open()函数来打开一个文件,获取到文件句柄,然后通过文件句柄就可以进行各种各样的操作了 根据打开方式的不同能够执行的操作 ...
- PAT Sign In and Sign Out[非常简单]
1006 Sign In and Sign Out (25)(25 分) At the beginning of every day, the first person who signs in th ...
- 使用 Mirantis Fuel9.0 部署 OpenStack M
Mirantis Fuel 9 可以实现部署OpenStack M版本web化,管理员只需简单规划就能部署复杂的openstack 组件 安装Fuel9.0 下载官方IOS镜像 https://www ...
- 获取多达 16GB 的 Dropbox 免费空间!
Dropbox官网