You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
421 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include <bits/stdc++.h>
using namespace std;
const int N = 110;
int n, m;
int f[N];
int main() {
scanf("%d %d", &n, &m);
f[0] = 1;
for (int i = 1; i <= n; i++) {
int v;
scanf("%d", &v);
//即使物品体积比j大j - v < 0也能选等价于f[0]
for (int j = m; j >= 0; j--) f[j] += f[max(0, j - v)];
}
printf("%d\n", f[m]);
return 0;
}