【BZOJ3625】【CF438E】小朋友和二叉树
题目
思路&做法
我们可以用\(v_i\)表示\(i\)在\(c\)中出现了几次, 用\(f_i\)表示权值为\(i\)的神犇树的总数, 于是
\]
\]
然后我们设\(v\)的生成函数为\(V = \sum_{i = 0} ^{\infty}v_ix^i\),
设\(f\)的生成函数为\(F = \sum_{i = 0}^{\infty}f_ix^i\)
所以
\]
然后移一下项
\]
接着直接用求根公式
\]
于是有两种情况
\((1)\)
\]
要舍去\((\)原因?不知道,我太弱了\()\)
\((2)\)
\]
可以把分子和分母同时乘上\(1 + \sqrt{1 + 4 \times V(x)}\)
所以
F(x)&={1^2 - \big(\sqrt{1 - 4 \times V(x)}\big)^2 \over {2 \times V(x) \times \big(1 + \sqrt{1 - 4 \times V(x)} \big)}} \\\
&={4 \times V(x) \over {2 \times V(x) \times \big(1 + \sqrt{1 - 4 \times V(x)}} \big)} \\\
&={2 \over {1 + \sqrt{1 - 4 \times V(x)}}}
\end {aligned}
\]
多项式求逆和多项式开根可以看我的这篇blog : 多项式的一些东西
代码
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long LL;
const LL mod = 998244353LL;
const int N = 400010;
char I[8000010], *pos, *End;
inline char GetChar()
{ if(pos == End)
{ End = (pos = I) + fread(I, 1, 8000000, stdin);
if(pos == End) return EOF;
}
return *pos++;
}
inline int rd_int()
{ int x = 0, f = 1;
char c = GetChar();
while(c < '0' || c > '9') { if(c == '-') f = -1; c = GetChar(); }
while(c >= '0' && c <= '9') { x = x*10 + c-'0'; c = GetChar(); }
return x*f;
}
int Bit;
inline LL power(LL a, LL n)
{ LL ans = 1;
while (n)
{ if (n & 1) ans = (ans * a) % mod;
a = (a * a) % mod;
n >>= 1;
}
return ans;
}
int rev[N];
void getReverse(int Len)
{ for (int i = 0; i < Len; i++)
rev[i] = (rev[i>>1] >> 1) | ((i&1) * (Len>>1));
}
LL w_n[N];
void NTT(LL * a, int opt, int Len)
{ getReverse(Len);
for (int i = 0; i < Len; i++)
if (i < rev[i]) swap(a[i], a[rev[i]]);
for (register int i = 2; i <= Len; i <<= 1)
{ LL w_n = power(3LL, (mod-1LL) / (LL)i);
if (opt == -1) w_n = power(w_n, mod-2);
for (register int j = 0; j < Len; j += i)
{ LL w = 1;
for (register int k = 0; k < (i>>1); k++)
{ LL x = a[j + k];
LL y = (w * a[j + k + (i>>1)]) % mod;
a[j + k] = (x + y) % mod;
a[j + k + (i>>1)] = (x - y + mod) % mod;
w = (w * w_n) % mod;
}
}
}
if (opt == -1)
{ LL num = power(Len, mod-2);
for (register int i = 0; i < Len; i++)
a[i] = (a[i] * num) % mod;
}
}
int getBit(int l)
{ Bit = 0;
for (; (1 << Bit) <= l; Bit++);
}
inline void cpy(LL * a, LL * b, int n, int Len)
{ for (register int i = 0; i < n; i++) a[i] = b[i];
for (register int i = n; i < Len; i++) a[i] = 0;
}
LL tmp1[N], tmp2[N];
void get_Inv(LL * a, LL * b, int l)
{ b[0] = power(a[0], mod-2);
for (register int i = 2; i <= l; i <<= 1)
{ int Len = i << 1;
cpy(tmp1, a, i, Len);
cpy(tmp2, b, i>>1, Len);
NTT(tmp1, 1, Len);
NTT(tmp2, 1, Len);
for (register int j = 0; j < Len; j++)
tmp1[j] = ((2LL*tmp2[j])%mod + mod - (((tmp2[j]*tmp2[j])%mod)*tmp1[j])%mod) % mod;
NTT(tmp1, -1, Len);
for (register int j = 0; j < i; j++)
b[j] = tmp1[j];
}
}
LL inv2;
LL tmp3[N], tmp4[N], tmp5[N];
void Sqrt(LL * a, LL * b, int l)
{ b[0] = 1;
for (register int i = 1; i <= l; i <<= 1)
{ int Len = i << 1;
for (register int j = 0; j < Len; j++)
if (j < i) tmp3[j] = (2LL * b[j]) % mod;
else tmp3[j] = 0;
get_Inv(tmp3, tmp4, i);
for (register int j = i; j < Len; j++) tmp4[j] = 0;
cpy(tmp5, a, i, Len);
NTT(tmp4, 1, Len);
NTT(tmp5, 1, Len);
for (register int j = 0; j < Len; j++)
tmp4[j] = (tmp4[j] * tmp5[j]) % mod;
NTT(tmp4, -1, Len);
for (register int j = 0; j < (i << 1); j++)
b[j] = (inv2 * b[j] + tmp4[j]) % mod;
}
}
LL a[N], b[N], ans[N];
LL v[N];
int main()
{ int n, m;
n = rd_int(), m = rd_int();
m++;
for (register int i = 1; i <= n; i++)
{ int x;
x = rd_int();
v[x]++;
}
inv2 = power(2, mod - 2);
getBit(m);
a[0] = 1;
for (register int i = 1; i < m; i++)
a[i] = (4 * (mod - v[i])) % mod;
Sqrt(a, b, (1 << Bit));
b[0] = (b[0] + 1) % mod;
get_Inv(b, ans, (1 << Bit));
for (register int i = 1; i < m; i++)
printf("%lld\n", (ans[i] * 2LL) % mod);
return 0;
}
【BZOJ3625】【CF438E】小朋友和二叉树的更多相关文章
- [BZOJ3625][CF438E]小朋友和二叉树
题面 Description 我们的小朋友很喜欢计算机科学,而且尤其喜欢二叉树. 考虑一个含有\(n\)个互异正整数的序列\(c_1,c_2,\ldots,c_n\).如果一棵带点权的有根二叉树满足其 ...
- [BZOJ3625][CF438E]小朋友和二叉树 (多项式开根,求逆)
题面 题解 设多项式的第a项为权值和为a的二叉树个数,多项式的第a项表示是否为真,即 则,所以F是三个多项式的卷积,其中包括自己: ,1是F的常数项,即. 我们发现这是一个一元二次方程,可以求出,因为 ...
- BZOJ3625 CF438E 小朋友与二叉树
心态崩了 不放传送门了 辣鸡bz 还是正经一点写一下题解= = 就是显然我们可以把权值写成生成函数形式g(0/1序列)来表示权值是否出现 然后f来表示总的方案数 可以列出 分别枚举左右子树和空树的情况 ...
- [CF438E] 小朋友和二叉树
Description 给定一个整数集合 \(c\),对于每个 \(i\in[1,m]\),求有多少种不同的带点权的二叉树使得这棵树点权和为 \(i\) 并且顶点的点权全部在集合 \(c\) 中.\( ...
- 【bzoj3625】【xsy1729】小朋友和二叉树
[bzoj3625]小朋友与二叉树 题意 我们的小朋友很喜欢计算机科学,而且尤其喜欢二叉树. 考虑一个含有n个互异正整数的序列c[1],c[2],...,c[n].如果一棵带点权的有根二叉树满足其所有 ...
- 【BZOJ3625/CF438E】小朋友和二叉树(多项式求逆,多项式开方)
[BZOJ3625/CF438E]小朋友和二叉树(多项式求逆,多项式开方) 题面 BZOJ CodeForces 大致题意: 对于每个数出现的次数对应的多项式\(A(x)\) 求\[f(x)=\fra ...
- 【CF438E】小朋友和二叉树 解题报告
[CF438E]小朋友和二叉树 Description 我们的小朋友很喜欢计算机科学,而且尤其喜欢二叉树. 考虑一个含有\(n\)个互异正整数的序列\(c_1,c_2,\dots,c_n\). ...
- BZOJ 3625: [Codeforces Round #250]小朋友和二叉树
3625: [Codeforces Round #250]小朋友和二叉树 Time Limit: 40 Sec Memory Limit: 256 MBSubmit: 304 Solved: 13 ...
- 「BZOJ 3645」小朋友与二叉树
「BZOJ 3645」小朋友与二叉树 解题思路 令 \(G(x)\) 为关于可选大小集合的生成函数,即 \[ G(x)=\sum[i\in c ] x^i \] 令 \(F(x)\) 第 \(n\) ...
- [BZOJ 3625] [Codeforces 438E] 小朋友的二叉树 (DP+生成函数+多项式开根+多项式求逆)
[BZOJ 3625] [Codeforces 438E] 小朋友的二叉树 (DP+生成函数+多项式开根+多项式求逆) 题面 一棵二叉树的所有点的点权都是给定的集合中的一个数. 让你求出1到m中所有权 ...
随机推荐
- solr相关文章
Solr集群架构概述及delta-import详细配置 背景 由于项目原因,重新熟悉了下Solr,版本为3.6,搭建了主从Solr服务,并使用DIH从RDBMS数据源增量更新索引. 其实也没什么技术含 ...
- I NEED A OFFER!---hdu1203(01背包)
http://acm.hdu.edu.cn/showproblem.php?pid=1203 Problem Description Speakless很早就想出国,现在他已经考完了所有需要的考 ...
- 51nod 马拉松30 C(构二分图+状压dp)
题意 分析 考虑一个图能被若干简单环覆盖,那么一定是每个点恰好一个出度,恰好一个出度 于是类似最小路径覆盖的处理,我们可以把每个点拆成2个点i和i',如果有一条边(i,j),那么将i和j'连起来 那么 ...
- codeforces 873F(后缀数组)
题意 给一个长度不超过200000的字符串s,假定有一个字符串a,这个字符串在s中出现次数是f(a),你需要让$|a|f(a)$最大. 但是有一些位置是禁止的,即以该位置为结束位置的字符串不计数. 分 ...
- Codeforces554E:Love Triangles
There are many anime that are about "love triangles": Alice loves Bob, and Charlie loves B ...
- poj1904 二分图匹配+强连通分量
http://poj.org/problem?id=1904 Description Once upon a time there lived a king and he had N sons. An ...
- wsdl2objc定制(一)namespace
1.问题抛出: 如今还是有非常多人使用 wsdl2objc 来调用webservice,可是有时候会有不开心的事情发生, <soap:Envelope xmlns:soap="http ...
- SpringBoot项目报错Cannot determine embedded database driver class for database type NONE
原因: Cannot determine embedded database driver class for database type NONE 这是因为spring boot默认会加载org.s ...
- enterText与typeText
转自:http://www.cnblogs.com/hyddd/p/4126979.html 问题场景: Robotium.enterText输入数据后,点击"发送"按钮,多数情况 ...
- [IT新应用]brave浏览器
https://www.brave.com/about.html The web has become a different place. With the ad-tech ecosystem ou ...