mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:18:47 +00:00
parent
787d25df06
commit
548a8a0683
29
ybt/1291/1291.cpp
Normal file
29
ybt/1291/1291.cpp
Normal file
@ -0,0 +1,29 @@
|
||||
#include <iostream>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 1005;
|
||||
|
||||
int n, m, a[N], f[N];
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
|
||||
cin >> n >> m;
|
||||
for (int i = 1; i <= n; i++) {
|
||||
cin >> a[i];
|
||||
}
|
||||
|
||||
f[0] = 1;
|
||||
for (int i = 1; i <= n; i++) {
|
||||
for (int j = m; j >= a[i]; j--) {
|
||||
f[j] += f[j - a[i]];
|
||||
}
|
||||
}
|
||||
|
||||
cout << f[m] << endl;
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user