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

建议使用的浏览器:

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

5609:The classic problem

题目描述
there are $N$ items,which has values from 0 to $N-1$,find a subset of the items(you can choose nothing),you need to make the sum of the subset
$S\equiv 0(mod~M)$

what's more,we make the rule that $K$ values $(a_1,a_2..a_K)$cannot be chosen.

please output the number of ways module 998244353
输入解释
the first line contains a number $T$,means the number of the test cases.

next,for each test case,the first line contains three numbers,$N,M,K$.

next line contains $K$ distinct numbers,$a_1,a_2..a_K$,means the numbers cannot be chosen.

$T\le 200,N\le 10^9,m\le 2048,K\le 4000$,$M$ is the Power of 2.

Only for 4 test cases there are $m>200$.
输出解释
$T$ lines,for each test case,output the answer.
输入样例
1
6 8 1
2
输出样例
6

six ways:
$0+1+3+4=8$
$1+3+4=8$
$0+3+5=8$
$3+5=8$
$0$
choose nothing($S=0$)
来自杭电HDUOJ的附加信息
Recommend hujie

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

源链接: HDU-5609

最后修改于 2020-10-25T23:24:10+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
8000/3000MS(Java/Others) 65536/65536K(Java/Others)