Solution -「多校联训」查拉图斯特拉如是说
\(\mathcal{Description}\)
Link.
给定 \(n\) 和 \(m\) 次多项式 \(f(x)\),求
\]
\(m\le10^5\),\(m\le n\le 10^9\)。
\(\mathcal{Solution}\)
推式子叭~
\sum_{i=0}^n\binom{n}{i}f(i)&=\sum_{i=0}^ma_i\sum_{j=0}^n\binom{n}{i}j^i\\
&=\sum_{i=0}^ma_ii![x^i]\left(\sum_{j=0}^{+\infty}\frac{x^j}{j!}\sum_{k=0}^n\binom{n}{k}k^j\right)\\
&=\sum_{i=0}^ma_ii![x^i]\left(\sum_{k=0}^n\binom{n}{k}e^{kx}\right)\\
&=\sum_{i=0}^ma_ii^n
\end{aligned}
\]
多项式全家桶算出 \((e^x+1)^n\) 即可,复杂度 \(\mathcal O(m\log m)\)。
\(\mathcal{Code}\)
/*~Rainybunny~*/
#include <cmath>
#include <cstdio>
#include <algorithm>
#define rep( i, l, r ) for ( int i = l, rpbound##i = r; i <= rpbound##i; ++i )
#define per( i, r, l ) for ( int i = r, rpbound##i = l; i >= rpbound##i; --i )
const int MOD = 998244353, MAXL = 1 << 18, MAXM = 1e5, INV2 = MOD + 1 >> 1;
int n, m, c[MAXM + 5], fac[MAXL + 5], ifac[MAXL + 5];
int F[MAXL + 5], G[MAXL + 5];
inline int sub( int a, const int b ) { return ( a -= b ) < 0 ? a + MOD : a; }
inline int mul( const long long a, const int b ) { return int( a * b % MOD ); }
inline int add( int a, const int b ) { return ( a += b ) < MOD ? a : a - MOD; }
inline int mpow( int a, int b ) {
int ret = 1;
for ( ; b; a = mul( a, a ), b >>= 1 ) ret = mul( ret, b & 1 ? a : 1 );
return ret;
}
inline void init( const int len ) {
fac[0] = 1;
rep ( i, 1, len ) fac[i] = mul( i, fac[i - 1] );
ifac[len] = mpow( fac[len], MOD - 2 );
per ( i, len - 1, 0 ) ifac[i] = mul( i + 1, ifac[i + 1] );
}
namespace PolyOper {
const int MG = 3;
int inv[MAXL + 5], omega[19][MAXL + 5];
inline void init() {
inv[1] = 1;
rep ( i, 2, MAXL ) inv[i] = mul( MOD - MOD / i, inv[MOD % i] );
rep ( i, 0, 18 ) {
int* oi = omega[i];
oi[0] = 1;
int& o1 = oi[1] = mpow ( MG, MOD - 1 >> i >> 1 );
rep ( j, 2, ( 1 << i ) - 1 ) oi[j] = mul( oi[j - 1], o1 );
}
}
inline void ntt( const int n, int* u, const int type ) {
static int rev[MAXL + 5];
int lgn = 1;
for ( ; 1 << lgn < n; ++lgn );
rep ( i, 1, n - 1 ) rev[i] = rev[i >> 1] >> 1 | ( i & 1 ) << lgn >> 1;
rep ( i, 1, n - 1 ) if ( i < rev[i] ) {
u[i] ^= u[rev[i]] ^= u[i] ^= u[rev[i]];
}
for ( int i = 0, stp = 1; stp < n; ++i, stp <<= 1 ) {
const int* oi = omega[i];
for ( int j = 0; j < n; j += stp << 1 ) {
rep ( k, j, j + stp - 1 ) {
int ev = u[k], ov = mul( oi[k - j], u[k + stp] );
u[k] = add( ev, ov ), u[k + stp] = sub( ev, ov );
}
}
}
if ( type == -1 ) {
for ( int invn = MOD - ( MOD - 1 ) / n, i = 0; i < n; ++i ) {
u[i] = mul( u[i], invn );
}
std::reverse( u + 1, u + n );
}
}
inline void polyDir ( const int n, const int* u, int* w ) {
rep ( i, 1, n - 1 ) w[i - 1] = mul( i, u[i] );
w[n - 1] = 0;
}
inline void polyInt( const int n, const int* u, int* w ) {
per ( i, n - 1, 0 ) w[i + 1] = mul( inv[i + 1], u[i] );
w[0] = 0;
}
inline void polyInv( const int n, const int* u, int* w ) {
static int tmp[2][MAXL + 5];
if ( n == 1 ) return void( w[0] = mpow( u[0], MOD - 2 ) );
polyInv( n >> 1, u, w );
rep ( i, 0, n - 1 ) tmp[0][i] = u[i], tmp[1][i] = w[i];
ntt( n << 1, tmp[0], 1 ), ntt( n << 1, tmp[1], 1 );
rep ( i, 0, ( n << 1 ) - 1 ) {
tmp[0][i] = mul( mul( tmp[0][i], tmp[1][i] ), tmp[1][i] );
}
ntt( n << 1, tmp[0], -1 );
rep ( i, 0, n - 1 ) w[i] = sub( mul( 2, w[i] ), tmp[0][i] );
rep ( i, 0, ( n << 1 ) - 1 ) tmp[0][i] = tmp[1][i] = 0;
}
inline void polyLn( const int n, const int* u, int* w ) {
static int tmp[2][MAXL + 5];
polyDir( n, u, tmp[0] ), polyInv( n, u, tmp[1] );
ntt( n << 1, tmp[0], 1 ), ntt( n << 1, tmp[1], 1 );
rep ( i, 0, ( n << 1 ) - 1 ) tmp[0][i] = mul( tmp[0][i], tmp[1][i] );
ntt( n << 1, tmp[0], -1 ), polyInt( n << 1, tmp[0], w );
rep ( i, 0, ( n << 1 ) - 1 ) tmp[0][i] = tmp[1][i] = 0;
}
inline void polyExp ( const int n, const int* u, int* w ) {
static int tmp[MAXL + 5];
if ( n == 1 ) return void( w[0] = 1 );
polyExp( n >> 1, u, w ), polyLn( n, w, tmp );
tmp[0] = sub( add( u[0], 1 ), tmp[0] );
rep ( i, 1, n - 1 ) tmp[i] = sub( u[i], tmp[i] );
ntt( n << 1, tmp, 1 ), ntt( n << 1, w, 1 );
rep ( i, 0, ( n << 1 ) - 1 ) w[i] = mul( w[i], tmp[i] );
ntt( n << 1, w, -1 );
rep ( i, n, ( n << 1 ) - 1 ) w[i] = tmp[i] = 0;
}
} // namespace PolyOper.
int main () {
freopen( "number.in", "r", stdin );
freopen( "number.out", "w", stdout );
PolyOper::init();
scanf( "%d %d", &n, &m ), ++m;
rep ( i, 0, m - 1 ) scanf( "%d", &c[i] );
int len = 1;
for ( ; len < m; len <<= 1 );
init( len ), F[0] = 1;
rep ( i, 1, len - 1 ) F[i] = mul( ifac[i], INV2 );
PolyOper::polyLn( len, F, G );
rep ( i, 0, len - 1 ) G[i] = mul( G[i], n ), F[i] = 0;
PolyOper::polyExp( len, G, F );
int ans = 0;
rep ( i, 0, m - 1 ) ans = add( ans, mul( c[i], mul( fac[i], F[i] ) ) );
printf( "%d\n", mul( ans, mpow( 2, n ) ) );
return 0;
}
Solution -「多校联训」查拉图斯特拉如是说的更多相关文章
- Solution -「多校联训」数学考试
\(\mathcal{Description}\) Link. 给定 \(n\) 个函数,第 \(i\) 个有 \(f_i(x)=a_ix^3+b_ix^2+cx_i+d~(x\in[l_i, ...
- Solution -「多校联训」排水系统
\(\mathcal{Description}\) Link. 在 NOIP 2020 A 的基础上,每条边赋权值 \(a_i\),随机恰好一条边断掉,第 \(i\) 条段的概率正比于 \(a ...
- Solution -「多校联训」I Love Random
\(\mathcal{Description}\) 给定排列 \(\{p_n\}\),可以在其上进行若干次操作,每次选取 \([l,r]\),把其中所有元素变为原区间最小值,求能够得到的所有不同序 ...
- Solution -「多校联训」签到题
\(\mathcal{Description}\) Link. 给定二分图 \(G=(X\cup Y,E)\),求对于边的一个染色 \(f:E\rightarrow\{1,2,\dots,c\ ...
- Solution -「多校联训」朝鲜时蔬
\(\mathcal{Description}\) Link. 破案了,朝鲜时蔬 = 超现实树!(指写得像那什么一样的题面. 对于整数集 \(X\),定义其 好子集 为满足 \(Y\sub ...
- Solution -「多校联训」消失的运算符
\(\mathcal{Description}\) Link. 给定长度为 \(n\) 的合法表达式序列 \(s\),其中数字仅有一位正数,运算符仅有 - 作为占位.求将其中恰好 \(k\) ...
- Solution -「多校联训」假人
\(\mathcal{Description}\) Link. 一种物品有 长度 和 权值 两种属性,现给定 \(n\) 组物品,第 \(i\) 组有 \(k_i\) 个,分别为 \((1,a ...
- Solution -「多校联训」古老的序列问题
\(\mathcal{Description}\) Link. 给定序列 \(\{a_n\}\),和 \(q\) 次形如 \([L,R]\) 的询问,每次回答 \[\sum_{[l,r]\su ...
- Solution -「多校联训」Sample
\(\mathcal{Description}\) Link (稍作简化:)对于变量 \(p_{1..n}\),满足 \(p_i\in[0,1],~\sum p_i=1\) 时,求 \(\ma ...
随机推荐
- 第10组 Alpha冲刺 (3/6)(组长)
1.1基本情况 ·队名:今晚不睡觉 ·组长博客:https://www.cnblogs.com/cpandbb/p/13971668.html ·作业博客:https://edu.cnblogs.co ...
- 信不信由你!iPhone6屏幕宽度不一定是375px,iPhone6 Plus屏幕宽度不一定是414px
看到这个题目你可能不信,引出这个问题的缘由是几次项目中Chrome模拟器和iPhone6真机预览效果不一致. 为什么在Chrome Emulation模拟手机页面和真机预览效果不一致? 以前觉得不外乎 ...
- JMM模型基础知识笔记
概述 内存模型可以理解为在特定的操作协议下,对特定的内存或者高速缓存进行读写访问的过程抽象,不同架构下的物理机拥有不一样的内存模型,Java虚拟机也有自己的内存模型,即Java内存模型(JavaMem ...
- springBoot--原理分析
起步依赖分析 分析spring-boot-starter-parent 按住Ctrl点击pom.xml中的spring-boot-starter-parent,跳转到了spring-boot-star ...
- Java使用poi实现Word添加水印(仅支持后缀为.docx格式)
最近要做电子合同,客户提出为了安全性要将合同中都添加水印,这个之前在网上看到过,貌似使用POI很好加.去网上一搜发现,清一色的只有一篇文章,并且这段代码是用不了的:在文章下边的评论里也发现都说用不了, ...
- idea同时启动多个微服务模块进行管理
1,打开IDEA项目中的 .idea 下 的workspace.xml 找到文件中的 RunDashboard 配置块,增加如下圈起来的地方 代码: <option name="con ...
- 五天学完MySQL打卡挑战 day01
明天继续上传学习笔记和练习的Word文档 晚安~
- Go语言:包管理基础知识
起因是,遇到一个问题: 经查阅资料,很可能跟包管理有关,之前有了解过忘了就再学一遍顺便解决问题. 学习资料: GO111MODULE 是个啥? - 知乎 (zhihu.com) go mod使用 - ...
- 花了半年时间,我把Pink老师的HTMLCSS视频课程,整理成了10万字的Markdown笔记!
说明:本文内容真实!!!不是推广!!! 学习前端的同学应该都或多或少听说过 Pink 老师,我个人觉得 Pink 老师的前端视频教程应该说是目前B站上最好的了,没有之一! Pink老师 HTML CS ...
- MyCms 自媒体 CMS 系统 v2.8,支持织梦数据导入
MyCms 是一款基于Laravel开发的开源免费的自媒体博客CMS系统,助力开发者知识技能变现. MyCms 基于Apache2.0开源协议发布,免费且不限制商业使用,欢迎持续关注我们. V2.8 ...