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.

20 lines
466 B

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