CF755G.PolandBall and Many Other Balls
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
PolandBall is standing in a row with Many Other Balls. More precisely, there are exactly n Balls. Balls are proud of their home land — and they want to prove that it's strong.
The Balls decided to start with selecting exactly m groups of Balls, each consisting either of single Ball or two neighboring Balls. Each Ball can join no more than one group.
The Balls really want to impress their Enemies. They kindly asked you to calculate number of such divisions for all m where 1<=m<=k . Output all these values modulo 998244353 , the Enemies will be impressed anyway.
输入格式
There are exactly two numbers n and k ( 1<=n<=109 , 1<=k<2^{15} ), denoting the number of Balls and the maximim number of groups, respectively.
输出格式
You should output a sequence of k values. The i -th of them should represent the sought number of divisions into exactly i groups, according to PolandBall's rules.
输入输出样例
输入#1
3 3
输出#1
5 5 1
输入#2
1 1
输出#2
1
输入#3
5 10
输出#3
9 25 25 9 1 0 0 0 0 0
说明/提示
In the first sample case we can divide Balls into groups as follows:
1 , 2 , 3 , 12 , 23 .
123 , 123 , 12 , 13 , 23 .
123 .
Therefore, output is: 5 5 1.