Solution -「LOCAL」画画图
\(\mathcal{Description}\)
给定一棵 \(n\) 个点的树形随机的带边权树,求所有含奇数条边的路径中位数之和。树形生成方式为随机取不连通两点连边直到全部连通。
\(n\le32000\)。
\(\mathcal{Solution}\)
考虑用中位数的标准姿势统计每条边的贡献——小于它的设为 \(-1\),大于它的设为 \(+1\),边权相等按编钦定大小关系。那么这条边的贡献就是路径两端权值加和为 \(0\) 的路径对数(显然每对路径连起来都是奇数路径)。
令 \(f(u,i)\) 表示 \(u\) 子树内到 \(u\) 路径权值和为 \(i\) 的结点数量。对于一条边 \((u,v)\),不妨设 \(u\) 是 \(v\) 的父亲,设我们已经得到了全树的 DP 信息,考虑到题目中随机树的期望深度为 \(\mathcal O(\sqrt n)\),所以暴力爬树统计 \(v\) 子树内和 \(v\) 子树外的信息即可求到当前答案。顺序枚举边,每条边仅会由 \(+1\) 变为 \(-1\),所以暴力仍然暴力爬树修改 DP 信息即可。实现上,利用树深限制,拿一个内存池储存 DP 信息;爬树统计时限制可能贡献答案的权值区间即可通过本题。
复杂度 \(\mathcal O(n^2)\),不过可以算出带一个 \(\frac{1}6\) 的常数,所以可过。
\(\mathcal{Code}\)
这里以直径中点作为根(为了和某毒瘤比赛卡常),不过随便选一个根都是可过的。
#include <queue>
#include <cstdio>
#include <cstring>
typedef long long LL;
const int MAXN = 32000, MAXSQRT = 180, MAXV = 1e6;
int n, ecnt, head[MAXN + 5], fa[MAXN + 5], dep[MAXN + 5], faw[MAXN + 5];
int mempool[MAXN * MAXSQRT * 2], *f[MAXN + 5], *frepos = mempool, *g;
int pre[MAXN + 5], buc[MAXV + 5], ori[MAXN + 5], down[MAXN + 5];
struct Edge { int to, cst, nxt; } graph[MAXN * 2 + 5];
struct EdgeSet { int u, v, w; } eset[MAXN + 5];
inline int rint () {
int x = 0; char s = getchar ();
for ( ; s < '0' || '9' < s; s = getchar () );
for ( ; '0' <= s && s <= '9'; s = getchar () ) x = x * 10 + ( s ^ '0' );
return x;
}
inline int min_ ( const int a, const int b ) { return a < b ? a : b; }
inline int max_ ( const int a, const int b ) { return a < b ? b : a; }
inline void link ( const int s, const int t, const int c ) {
graph[++ ecnt] = { t, c, head[s] };
head[s] = ecnt;
}
inline void BFS ( const int s ) {
static std::queue<int> que;
que.push ( s ); dep[s] = 1;
while ( ! que.empty () ) {
int u = que.front (); que.pop ();
for ( int i = head[u], v; i; i = graph[i].nxt ) {
if ( ! dep[v = graph[i].to] ) {
pre[v] = u, dep[v] = dep[u] + 1;
que.push ( v );
}
}
}
}
inline void init ( const int u ) {
dep[u] = 0;
for ( int i = head[u], v; i; i = graph[i].nxt ) {
if ( ( v = graph[i].to ) ^ fa[u] ) {
fa[v] = u, faw[v] = 1, down[graph[i].cst] = v, init ( v );
if ( dep[v] + 1 > dep[u] ) dep[u] = dep[v] + 1;
}
}
f[u] = frepos += dep[u] + 1, frepos += dep[u] + 1;
}
inline void DP ( const int u ) {
*f[u] = 1;
for ( int i = head[u], v; i; i = graph[i].nxt ) {
if ( ( v = graph[i].to ) ^ fa[u] ) {
DP ( v );
for ( int j = -dep[v]; j <= dep[v]; ++ j ) f[u][j + 1] += f[v][j];
}
}
}
inline LL update ( const int s ) {
int l = -dep[s], r = dep[s]; faw[s] = -1;
for ( int u = fa[s], v = s, d1 = 0, d2 = 0; u; u = fa[v = u] ) {
d1 += v ^ s ? faw[v] : 1, d2 += faw[v];
for ( int i = -dep[s]; i <= dep[s]; ++ i ) {
f[u][i + d1] -= f[s][i];
f[u][i + d2] += f[s][i];
}
for ( int i = max_ ( -dep[u], l ), t = min_ ( dep[u], r ), d = d2 + 1; i <= t; ++ i ) {
g[i + d] += f[u][i] - f[v][i - faw[v]];
}
l -= faw[u], r -= faw[u];
}
LL ret = 0;
for ( int i = -dep[s]; i <= dep[s]; ++ i ) {
ret += 1ll * f[s][i] * g[-i];
g[-i] = 0;
}
return ret;
}
int main () {
n = rint (); int mxw = 0;
for ( int i = 1, u, v, w; i < n; ++ i ) {
u = rint (), v = rint (), w = rint ();
eset[i] = { u, v, w }, ++ buc[w];
if ( w > mxw ) mxw = w;
}
for ( int i = 2; i <= mxw; ++ i ) buc[i] += buc[i - 1];
for ( int i = 1; i < n; ++ i ) {
eset[i].w = buc[ori[buc[eset[i].w]] = eset[i].w] --;
link ( eset[i].u, eset[i].v, eset[i].w );
link ( eset[i].v, eset[i].u, eset[i].w );
}
BFS ( 1 );
int s = 0, t = 0;
for ( int i = 1; i <= n; ++ i ) {
if ( dep[i] > dep[s] ) s = i;
dep[i] = pre[i] = 0;
}
BFS ( s );
for ( int i = 1; i <= n; ++ i ) if ( dep[i] > dep[t] ) t = i;
for ( int i = dep[s] + dep[t] - 2 >> 1; i --; t = pre[t] );
init ( t ), DP ( t );
g = frepos += dep[t] + 1, frepos += dep[t] + 1;
LL ans = 0;
for ( int i = 1; i < n; ++ i ) ans += ori[i] * update ( down[i] );
printf ( "%lld\n", ans );
return 0;
}
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」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 ...
- Solution -「LOCAL」「cov. 牛客多校 2020 第五场 C」Easy
\(\mathcal{Description}\) Link.(完全一致) 给定 \(n,m,k\),对于两个长度为 \(k\) 的满足 \(\left(\sum_{i=0}^ka_i=n\r ...
随机推荐
- Cannot uninstall 'pyparsing'. It is a distutils installed project
我的环境: [root@ansible ~]# python -V Python 2.7.5 [root@ansible ~]# cat /etc/redhat-release CentOS Linu ...
- spring cloud --- config 从git 获取文件【 可能是yml或 properties】遇到有相同字段的取值规则
spring boot 1.5.9.RELEASE spring cloud Dalston.SR1 1.前言 昨天做了 spring cloud config 配置中心 获取存在gi ...
- Java在linux环境下和windows环境下日期字符串显示不同
图片如果损坏,点击链接: https://www.toutiao.com/i6511565147322974724/ 出现的现象: 在Java中我想要将当前的时间格式化为需要的字符串,然后存放到数据库 ...
- 小程序云开发请求第三方http或https接口
1.新建http云函数,选中http云函数,右键,打开终端,安装依赖: npm install request-promise 2.http.js引入request-promise用于做网络请求 va ...
- vivo推送平台架构演进
本文根据Li Qingxin老师在"2021 vivo开发者大会"现场演讲内容整理而成.公众号回复[2021VDC]获取互联网技术分会场议题相关资料. 一.vivo推送平台介绍 1 ...
- Sentry 开发者贡献指南 - 配置 PyCharm
概述 如果您使用 PyCharm 进行开发,则需要配置一些内容才能运行和调试. 本文档描述了一些对 sentry 开发有用的配置 配置 Python 解释器:(确保它是 venv 解释器)例如 ~/v ...
- leetcode 1288. 删除被覆盖区间
问题描述 给你一个区间列表,请你删除列表中被其他区间所覆盖的区间. 只有当 c <= a 且 b <= d 时,我们才认为区间 [a,b) 被区间 [c,d) 覆盖. 在完成所有删除操作后 ...
- python闭包函数&装饰器
一.函数引用 函数可以被引用 函数可以被赋值给一个变量 def hogwarts(): print("hogwarts") # hogwarts() # 函数调用 print(ho ...
- 记录一个问题:macos High Sierra 10.13.6 内核内存泄漏,导致内存满而不得不重启
kernel_task进程占用内存10g以上,使用中突然提示内存不足,要求杀死工作进程,不得不强按电源键来关机重启. 升级之前,版本大约是macos High Sierra 10.13.4, 系统频繁 ...
- 0,NULL和nullpter
#include <iostream> using namespace std; void f(int) { cout<<"f(int)"<<e ...