题意:点分治每次随机选重心,求期望复杂度。

发现一次点分治的复杂度就是点分树上每个节点的子树大小之和。(并没有发现......)

这个

注意这个写法有问题,随便来个菊花图就是n2了。

每一层点分治的时候,时间复杂度决不能与上一层大小挂钩。

 /**************************************************************
Problem: 3451
Language: C++
Result: Accepted
Time:5548 ms
Memory:8548 kb
****************************************************************/ #include <cstdio>
#include <algorithm>
#include <cstring>
#include <cmath> typedef long long LL;
typedef long double LD;
const LD pi = 3.1415926535897932384626;
const int N = , INF = 0x3f3f3f3f; inline void read(int &x) {
x = ;
char c = getchar();
while(c < '' || c > '') {
c = getchar();
}
while(c >= '' && c <= '') {
x = (x << ) + (x << ) + c - ;
c = getchar();
}
return;
} struct cp {
LD x, y;
cp(LD X = , LD Y = ) {
x = X;
y = Y;
}
inline cp operator +(const cp &w) const {
return cp(x + w.x, y + w.y);
}
inline cp operator -(const cp &w) const {
return cp(x - w.x, y - w.y);
}
inline cp operator *(const cp &w) const {
return cp(x * w.x - y * w.y, x * w.y + y * w.x);
}
}a[N * ], b[N * ]; struct Edge {
int nex, v;
}edge[N << ]; int tp; int r[N * ], n, e[N], small, root, d[N], bin[N], cnt[N], _n, siz[N];
bool del[N]; inline void add(int x, int y) {
tp++;
edge[tp].v = y;
edge[tp].nex = e[x];
e[x] = tp;
return;
} inline void FFT(cp *a, int n, int f) {
for(register int i = ; i < n; i++) {
if(i < r[i]) {
std::swap(a[i], a[r[i]]);
}
}
for(register int len = ; len < n; len <<= ) {
cp Wn(cos(pi / len), f * sin(pi / len));
for(register int i = ; i < n; i += (len << )) {
cp w(, );
for(register int j = ; j < len; j++) {
cp t = a[i + len + j] * w;
a[i + len + j] = a[i + j] - t;
a[i + j] = a[i + j] + t;
w = w * Wn;
}
}
}
if(f == -) {
for(register int i = ; i <= n; i++) {
a[i].x /= n;
}
}
return;
} inline void cal(int n, int f) {
/*printf("cal \n");
for(int i = 0; i <= n; i++) {
printf("%d ", bin[i]);
}
printf("\n");*/
int lm = , len = ;
while(len <= n * ) {
len <<= ;
lm++;
}
for(register int i = ; i <= len; i++) {
r[i] = (r[i >> ] >> ) | ((i & ) << (lm - ));
}
for(register int i = ; i <= n; i++) {
a[i] = cp(bin[i], );
}
for(register int i = n + ; i <= len; i++) {
a[i] = cp(, );
}
FFT(a, len, );
for(register int i = ; i <= len; i++) {
a[i] = a[i] * a[i];
}
FFT(a, len, -);
/*for(int i = 0; i <= n + n; i++) {
printf("%d ", (int)(a[i].x + 0.5));
}
printf("\n");*/
for(register int i = ; i <= len; i++) {
cnt[i] += f * (int)(a[i].x + 0.5);
}
return;
} void get_root(int x, int f) {
bin[d[x]]++;
siz[x] = ;
int large = -;
for(int i = e[x]; i; i = edge[i].nex) {
int y = edge[i].v;
if(y == f || del[y]) {
continue;
}
get_root(y, x);
siz[x] += siz[y];
large = std::max(large, siz[y]);
}
if(small > std::max(large, _n - siz[x])) {
small = std::max(large, _n - siz[x]);
root = x;
}
return;
} void DFS(int x, int f) {
d[x] = d[f] + ;
bin[d[x]]++;
siz[x] = ;
for(int i = e[x]; i; i = edge[i].nex) {
int y = edge[i].v;
if(y == f || del[y]) {
continue;
}
DFS(y, x);
siz[x] += siz[y];
}
return;
} void div(int x, int f, int last_n) {
if(f) {
memset(bin, , sizeof(int) * (last_n + ));
}
small = INF;
get_root(x, );
if(f) {
cal(last_n, -);
}
x = root;
memset(bin, , sizeof(int) * (_n + ));
DFS(x, );
cal(_n, );
del[x] = ;
for(int i = e[x]; i; i = edge[i].nex) {
int y = edge[i].v;
if(del[y]) {
continue;
}
_n = siz[y];
div(y, , siz[x]);
}
return;
} int main() {
d[] = -;
read(n);
for(register int i = , x, y; i < n; i++) {
read(x); read(y);
add(x + , y + ); add(y + , x + );
} _n = n;
div(, , n);
LD ans = ;
/*for(int i = 0; i <= n; i++) {
printf("%d ", cnt[i]);
}
printf("\n");*/
for(register int i = ; i < n; i++) {
ans += (LD)cnt[i] / (i + );
}
printf("%.4Lf\n", ans);
return ;
}

AC代码

注意FFT里面j从0开始,到len。

bzoj3451 Normal的更多相关文章

  1. [BZOJ3451]normal 点分治,NTT

    [BZOJ3451]normal 点分治,NTT 好久没更博了,咕咕咕. BZOJ3451权限题,上darkbzoj交吧. 一句话题意,求随机点分治的期望复杂度. 考虑计算每个点对的贡献:如果一个点在 ...

  2. [BZOJ3451]Normal(点分治+FFT)

    [BZOJ3451]Normal(点分治+FFT) 题面 给你一棵 n个点的树,对这棵树进行随机点分治,每次随机一个点作为分治中心.定义消耗时间为每层分治的子树大小之和,求消耗时间的期望. 分析 根据 ...

  3. BZOJ3451 Normal 期望、点分治、NTT

    BZOJCH传送门 题目大意:给出一棵树,求对其进行随机点分治的复杂度期望 可以知道一个点的贡献就是其点分树上的深度,也就是这个点在点分树上的祖先数量+1. 根据期望的线性性,考虑一个点对\((x,y ...

  4. 【BZOJ3451】Normal

    [BZOJ3451]Normal Description 某天WJMZBMR学习了一个神奇的算法:树的点分治! 这个算法的核心是这样的: 消耗时间=0 Solve(树 a) 消耗时间 += a 的 大 ...

  5. 【BZOJ3451】Normal (点分治)

    [BZOJ3451]Normal (点分治) 题面 BZOJ 题解 显然考虑每个点的贡献.但是发现似乎怎么算都不好计算其在点分树上的深度. 那么考虑一下这个点在点分树中每一次被计算的情况,显然就是其在 ...

  6. 【BZOJ3451】Tyvj1953 Normal 点分治+FFT+期望

    [BZOJ3451]Tyvj1953 Normal Description 某天WJMZBMR学习了一个神奇的算法:树的点分治!这个算法的核心是这样的:消耗时间=0Solve(树 a) 消耗时间 += ...

  7. BZOJ3451: Tyvj1953 Normal

    题解: 好神的一道题.蒟蒻只能膜拜题解. 考虑a对b的贡献,如果a是a-b路径上第一个删除的点,那么给b贡献1. 所以转化之后就是求sigma(1/dist(i,j)),orz!!! 如果不是分母的话 ...

  8. BZOJ3451 Tyvj1953 Normal 点分治 多项式 FFT

    原文链接https://www.cnblogs.com/zhouzhendong/p/BZOJ3451.html 题目传送门 - BZOJ3451 题意 给定一棵有 $n$ 个节点的树,在树上随机点分 ...

  9. [BZOJ3451][Tyvj1953]Normal(点分治+FFT)

    https://www.cnblogs.com/GXZlegend/p/8611948.html #include<cmath> #include<cstdio> #inclu ...

随机推荐

  1. RabbitMQ TroubleShooting

    RabbitMQ是一款优秀的消息队列中间件,提供了稳定.监控完善的产品,但是软件就会有bug.为了前进路径可以畅通,我们必须了解出现的一些故障的快速处理方式,毕竟在生产环境,时间就是生命,尽快的处理是 ...

  2. Jmeter(三十四)_Beanshell解析并提取json响应

    1:前置条件 将fastjson-1.2.49.jar包置于jmeter的lib目录下,并将该jar包添加到测试计划的Library中:否则会报:Typed variable declaration ...

  3. Python零基础入门(安装步骤,验证方式, 简单操作)

    本篇文章适合新人小白初步了解Python,涵盖Python的介绍.安装以及简单的基础操作.  1.Python简介 Python 是一个高层次的结合了解释性.编译性.互动性和面向对象的脚本语言.它的设 ...

  4. Maven 项目生成或者update jdk变为1.5的问题

    在使用Maven构建项目时,生成的maven项目jdk默认使用的是jdk1.5. 在手动修改了jdk之后,update project之后jdk又会变为1.5. 或者用eclipse的Maven插件生 ...

  5. .apply()用法和call()的区别

    Js apply方法详解我在一开始看到javascript的函数apply和call时,非常的模糊,看也看不懂,最近在网上看到一些文章对apply方法和call的一些示例,总算是看的有点眉目了,在这里 ...

  6. 《Linux内核设计与实现》读书笔记四

    Chapter 3 进程管理 3.1 进程 进程就是处于执行期的程序(目标码存放在某种存储介质上),但进程并不仅仅局限于一段可执行程序代码.通常进程还要包含其他资源,像打开的文件,挂起的信号,内核内部 ...

  7. 实现基于SSH的门票管理系统开发的质量属性

    我要做的是一个基于SSH的门票售卖系统,在系统中常见的质量属性有:可用性.可修改性.性能.安全性.易用性. 可用性方面: 可用性是指系统正常运行时间的比例,是通过两次故障之间的时间长度或在系统崩溃情况 ...

  8. back

    #include<stdio.h>   int main()   {   int a[5],b[5][5];   int i,j,sum,max,m,n;   printf("输 ...

  9. PAT L2-002 链表去重

    https://pintia.cn/problem-sets/994805046380707840/problems/994805072641245184 给定一个带整数键值的链表 L,你需要把其中绝 ...

  10. PAT 1083 是否存在相等的差

    https://pintia.cn/problem-sets/994805260223102976/problems/994805260780945408 给定 N 张卡片,正面分别写上 1.2.…… ...