当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

7023:Yet Another Matrix Problem

题目描述
There are two matrices $A$ and $B$.

Matrix $A_{n,r}$ has $n$ rows and $r$ columns. Each $A[i][j]\ (1\leq i\leq n,1\leq j\leq r,0\leq A[i][j]\leq m)$ is an integer.

Matrix $B_{r,n}$ has $r$ rows and $n$ columns. Each $B[i][j]\ (1\leq i\leq r,1\leq j\leq n,0\leq B[i][j]\leq m)$ is an integer.

Define $f(x)$ as the number of pair($A_{n,r},B_{r,n}$) satisfying $\displaystyle C=A\times B\ and\ \sum_{i=1}^n\sum_{j=1}^n C[i][j]=x$ .

To simplify the problem, let $r=n^m$.

Now, you need to calculate $f(0),f(1)...f(m)$ $mod$ $998244353$.
输入解释
The first line contains an integer $T(T \le 15)$. Then $T$ test cases follow.

For each test, input one single line with two integer $n,\ m\in [1,10^5]$.
输出解释
For each test, output $m+1$ lines. For $i$-th line, print one integer, $f(i-1)$ $mod$ $998244353$.
输入样例
1
2 1
输出样例
49
56

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-7023

最后修改于 2021-10-23T19:11:05+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
24000/12000MS(Java/Others) 262144/262144K(Java/Others)