mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +00:00
20 lines
373 B
C++
20 lines
373 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int n, m, v[1005], w[1005], f[1005];
|
|
|
|
int main() {
|
|
cin >> n >> m;
|
|
for (int i = 1; i <= n; i++) {
|
|
cin >> v[i] >> w[i];
|
|
}
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = m; j >= v[i]; j--) {
|
|
f[j] = max(f[j], f[j - v[i]] + w[i]);
|
|
}
|
|
}
|
|
cout << f[m] << endl;
|
|
return 0;
|
|
}
|