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.

38 lines
635 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
const int N = 110;
const int INF = 0x3f3f3f3f;
/*
  5 
 
3 5
1 2
4 9
3 6
11 1,4-->2+9=11
*/
int n, m;
int f[N];
int main() {
scanf("%d %d", &n, &m);
memset(f, 0x3f, sizeof f);
f[0] = 0;
// 01背包
for (int i = 1; i <= n; i++) {
int v, w;
scanf("%d %d", &v, &w);
for (int j = m; j >= v; j--)
f[j] = min(f[j], f[max(0, j - v)] + w);
}
printf("%d\n", f[m]);
return 0;
}