Solution -「LOCAL」模板
\(\mathcal{Description}\)
给定一棵 \(n\) 个结点树,\(1\) 为根,每个 \(u\) 结点有容量 \(k_u\)。\(m\) 次操作,每次操作 \((u,c)\),表示在 \(u\) 到根路径上的每个结点放一个颜色为 \(c\) 的小球,但若某一结点容量已满,则跳过该结点不放球。求所有操作完成后每个结点拥有小球的颜色种数。
\(n,m\le10^5\)。
\(\mathcal{Solution}\)
优雅的离线算法。
首先,若 \((\forall u)(k_u\ge m)\),有一个很显然的 DFN(虚树)+差分+BIT 的计算方法,且这种计算可以通过 std::set
做到在线。现在考虑 \(k_u\) 的限制,我们可以在每个结点的球数刚好达到限制时对它询问求到答案,即利用整体二分把每个点的询问挂到一个操作时刻之后,就做完啦。
复杂度 \(\mathcal O(m(\log m)(\log n))\)。
\(\mathcal{Code}\)
/* Clearink */
#include <set>
#include <cstdio>
#include <vector>
#include <algorithm>
inline int rint () {
int x = 0, f = 1; char s = getchar ();
for ( ; s < '0' || '9' < s; s = getchar () ) f = s == '-' ? -f : f;
for ( ; '0' <= s && s <= '9'; s = getchar () ) x = x * 10 + ( s ^ '0' );
return x * f;
}
template<typename Tp>
inline void wint ( Tp x ) {
if ( x < 0 ) putchar ( '-' ), x = -x;
if ( 9 < x ) wint ( x / 10 );
putchar ( x % 10 ^ '0' );
}
const int MAXN = 1e5, MAXLG = 17;
int n, m, ecnt, head[MAXN + 5], vol[MAXN + 5], tmpc[MAXN + 5], ans[MAXN + 5];
int dfc, dfn[MAXN + 5], ref[MAXN + 5], dep[MAXN + 5], siz[MAXN + 5];
int stc, stn[MAXN + 5], st[2 * MAXN + 5][MAXLG + 5], lg2[MAXN * 2 + 5];
std::vector<int> pts, qry[MAXN + 5];
std::set<int> vtr[MAXN + 5];
struct Edge { int to, nxt; } graph[MAXN * 2 + 5];
struct Event { int u, c; } evt[MAXN + 5];
struct BinaryIndexTree {
int val[MAXN + 5];
inline void update ( int x, const int k ) {
for ( ; x <= n; x += x & -x ) {
val[x] += k;
}
}
inline int sum ( int x ) {
int ret = 0;
for ( ; x; x -= x & -x ) ret += val[x];
return ret;
}
inline int sum ( const int l, const int r ) {
return l > r ? 0 : sum ( r ) - sum ( l - 1 );
}
} bit;
inline void link ( const int s, const int t ) {
graph[++ ecnt] = { t, head[s] };
head[s] = ecnt;
}
inline void init ( const int u, const int f ) {
ref[dfn[u] = ++ dfc] = u;
st[stn[u] = ++ stc][0] = u;
siz[u] = 1, dep[u] = dep[f] + 1;
for ( int i = head[u], v; i; i = graph[i].nxt ) {
if ( ( v = graph[i].to ) ^ f ) {
init ( v, u );
siz[u] += siz[v], st[++ stc][0] = u;
}
}
}
inline void initST () {
for ( int i = 2; i <= stc; ++ i ) lg2[i] = lg2[i >> 1] + 1;
for ( int j = 1; 1 << j <= stc; ++ j ) {
for ( int i = 1; i + ( 1 << j ) - 1 <= stc; ++ i ) {
if ( dep[st[i][j - 1]] < dep[st[i + ( 1 << j >> 1 )][j - 1]] ) {
st[i][j] = st[i][j - 1];
} else {
st[i][j] = st[i + ( 1 << j >> 1 )][j - 1];
}
}
}
}
inline int LCA ( int u, int v ) {
if ( ( u = stn[u] ) > ( v = stn[v] ) ) u ^= v ^= u ^= v;
int k = lg2[v - u + 1];
return dep[st[u][k]] < dep[st[v - ( 1 << k ) + 1][k]] ?
st[u][k] : st[v - ( 1 << k ) + 1][k];
}
inline void markQ ( std::vector<int>& pts, const int l, const int r ) {
if ( pts.empty () ) return ;
if ( l == r ) {
for ( int u: pts ) qry[l].push_back ( u );
return pts.clear ();
}
int mid = l + r >> 1;
for ( int i = l ? l : 1; i <= mid; ++ i ) bit.update ( dfn[evt[i].u], 1 );
std::vector<int> lc, rc;
for ( int u: pts ) {
if ( bit.sum ( dfn[u], dfn[u] + siz[u] - 1 ) < vol[u] ) rc.push_back ( u );
else lc.push_back ( u );
}
pts.clear ();
markQ ( rc, mid + 1, r );
for ( int i = l ? l : 1; i <= mid; ++ i ) bit.update ( dfn[evt[i].u], -1 );
markQ ( lc, l, mid );
}
inline void addNode ( std::set<int>& vtr, const int u ) {
auto ret ( vtr.insert ( dfn[u] ) );
if ( !ret.second ) return ;
bit.update ( dfn[u], 1 );
auto it ( ret.first ); int p = -1, q = -1;
if ( it != vtr.begin () ) {
bit.update ( dfn[LCA ( p = ref[*-- it], u )], -1 );
++ it;
}
if ( ++ it != vtr.end () ) {
bit.update ( dfn[LCA ( q = ref[*it], u )], -1 );
}
if ( ~p && ~q ) {
bit.update ( dfn[LCA ( p, q )], 1 );
}
}
int main () {
freopen ( "ac.in", "r", stdin );
freopen ( "ac.out", "w", stdout );
n = rint ();
for ( int i = 1, u, v; i < n; ++ i ) {
u = rint (), v = rint ();
link ( u, v ), link ( v, u );
}
for ( int i = 1; i <= n; ++ i ) {
vol[i] = rint ();
pts.push_back ( i );
}
m = rint ();
for ( int i = 1; i <= m; ++ i ) {
evt[i].u = rint (), tmpc[i] = evt[i].c = rint ();
}
std::sort ( tmpc + 1, tmpc + m + 1 );
int mxc = std::unique ( tmpc + 1, tmpc + m + 1 ) - tmpc - 1;
for ( int i = 1; i <= m; ++ i ) {
evt[i].c = std::lower_bound ( tmpc + 1, tmpc + mxc + 1, evt[i].c ) - tmpc;
}
init ( 1, 0 ), initST ();
markQ ( pts, 0, m );
for ( int i = 1; i <= m; ++ i ) {
addNode ( vtr[evt[i].c], evt[i].u );
for ( int u: qry[i] ) ans[u] = bit.sum ( dfn[u], dfn[u] + siz[u] - 1 );
}
for ( int q = rint (); q --; ) wint ( ans[rint ()] ), putchar ( '\n' );
return 0;
}
\(\mathcal{Details}\)
这题 Tricks 好多啊 owo。
Solution -「LOCAL」模板的更多相关文章
- Solution -「LOCAL」二进制的世界
\(\mathcal{Description}\) OurOJ. 给定序列 \(\{a_n\}\) 和一个二元运算 \(\operatorname{op}\in\{\operatorname{ ...
- Solution -「LOCAL」大括号树
\(\mathcal{Description}\) OurTeam & OurOJ. 给定一棵 \(n\) 个顶点的树,每个顶点标有字符 ( 或 ).将从 \(u\) 到 \(v\) ...
- Solution -「LOCAL」过河
\(\mathcal{Description}\) 一段坐标轴 \([0,L]\),从 \(0\) 出发,每次可以 \(+a\) 或 \(-b\),但不能越出 \([0,L]\).求可达的整点数. ...
- Solution -「LOCAL」Drainage System
\(\mathcal{Description}\) 合并果子,初始果子的权值在 \(1\sim n\) 之间,权值为 \(i\) 的有 \(a_i\) 个.每次可以挑 \(x\in[L,R]\) ...
- Solution -「LOCAL」Burning Flowers
灼之花好评,条条生日快乐(假装现在 8.15)! \(\mathcal{Description}\) 给定一棵以 \(1\) 为根的树,第 \(i\) 个结点有颜色 \(c_i\) 和光亮值 ...
- Solution -「LOCAL」画画图
\(\mathcal{Description}\) OurTeam. 给定一棵 \(n\) 个点的树形随机的带边权树,求所有含奇数条边的路径中位数之和.树形生成方式为随机取不连通两点连边直到全 ...
- Solution -「LOCAL」ZB 平衡树
\(\mathcal{Description}\) OurOJ. 维护一列二元组 \((a,b)\),给定初始 \(n\) 个元素,接下来 \(m\) 次操作: 在某个位置插入一个二元组: 翻 ...
- Solution -「LOCAL」舟游
\(\mathcal{Description}\) \(n\) 中卡牌,每种三张.对于一次 \(m\) 连抽,前 \(m-1\) 次抽到第 \(i\) 种的概率是 \(p_i\),第 \(m\) ...
- Solution -「LOCAL」充电
\(\mathcal{Description}\) 给定 \(n,m,p\),求序列 \(\{a_n\}\) 的数量,满足 \((\forall i\in[1,n])(a_i\in[1,m])\l ...
随机推荐
- 创建react开发环境
准备工作 1.下载node.js(http://nodejs.cn/download/)推荐下载长期支持的版本 2.下载cnpm(https://jingyan.baidu.com/article/9 ...
- Visual Studio 设置背景图片主题(所有版本设置方法)
前言 效果预览: 目录 扩展安装 图片背景设置 主题透明并扩展到 IDE 内容 扩展安装 ClaudiaIDE 扩展下载 我们打开VS的扩展安装界面:[扩展]->[管理扩展]->[联机], ...
- 【填坑往事】使用Rxjava2的distinct操作符处理自定义数据类型去重的问题
最近碰到一个问题,自定义数据类型列表中出现了重复数据,需要去重.处理去重的办法很多,比如借助Set集合类,使用双重循环拿每一个元素和其他元素对比等.这里介绍一种简单而且比较优雅的方式:使用Rxjava ...
- WebLogic任意文件上传漏洞(CVE-2019-2725)
一,漏洞介绍 1.1漏洞简介 Oracle weblogic反序列化远程命令执行漏洞,是根据weblogic的xmldecoder反序列化漏洞,只是通过构造巧妙的利用链可以对Oracle官方历年来针对 ...
- SRC(不定期更新)
主域名收集 响应包 Content-Security-Policy-Report-Only
- Docker 安装与常用命令
目录 Docker 安装 1)安装 2)启动 3)镜像加速器 Docker 常用命令 1)Docker 进程相关命令 2)Docker 镜像相关命令 docker search:查找镜像仓库中的镜像 ...
- Cesium和Kaarta用高分辨率激光雷达可视化室内和地下环境
Cesium中文网:http://cesiumcn.org/ | 国内快速访问:http://cesium.coinidea.com/ Cesium使急救人员和军事操作人员更容易快速评估和了解密集和不 ...
- 论文解读GALA《Symmetric Graph Convolutional Autoencoder for Unsupervised Graph Representation Learning》
论文信息 Title:<Symmetric Graph Convolutional Autoencoder for Unsupervised Graph Representation Learn ...
- json模块 os模块 文件加密
目录 一:random随机模块 二:os模块 三:文件处理选择任意视频 四:sys模块 五:实现文件执行加密操作 六:json 序列化模块 七:json序列化 反序列化 八:json 文件写读方式 九 ...
- Java 基础02
参照:https://www.cnblogs.com/ZXF6/p/11530009.html 类和对象 /** * java 中的类和对象 * * 一.局部变量的作用域. * * 二.面向对象的概述 ...