-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBookShop.java
32 lines (31 loc) · 992 Bytes
/
BookShop.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.io.*;
import java.util.*;
class BookShop {
public static void main (String[] args) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s[] = br.readLine().split(" ");
int n = Integer.parseInt(s[0]);
int t = Integer.parseInt(s[1]);
String s1[] = br.readLine().split(" ");
int wt[] = new int[n];
for(int i = 0; i < n; i++) {
wt[i] = Integer.parseInt(s1[i]);
}
String s2[] = br.readLine().split(" ");
int val[] = new int[n];
for(int i = 0; i < n; i++) {
val[i] = Integer.parseInt(s2[i]);
}
int dp[][] = new int[n+1][t+1];
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= t; j++) {
dp[i][j] = dp[i-1][j];
if(j >= wt[i-1]) {
dp[i][j] = Math.max(dp[i][j], dp[i-1][j-wt[i-1]] + val[i-1]);
}
}
}
System.out.print(dp[n][t]);
}
}