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.
27 lines
587 B
27 lines
587 B
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
const int N = 110;
|
|
const int INF = 0x3f3f3f3f;
|
|
|
|
int n, m;
|
|
int f[N][N];
|
|
|
|
int main() {
|
|
//文件输入
|
|
freopen("QiaHao_01_Max.in", "r", stdin);
|
|
scanf("%d %d", &n, &m);
|
|
memset(f, -INF, sizeof f);
|
|
f[0][0] = 0;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
int v, w;
|
|
scanf("%d %d", &v, &w);
|
|
for (int j = 0; j <= m; j++) {
|
|
f[i][j] = f[i - 1][j];
|
|
if (j >= v) f[i][j] = max(f[i][j], f[i - 1][j - v] + w);
|
|
}
|
|
}
|
|
printf("%d\n", f[n][m]);
|
|
return 0;
|
|
} |