-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknapsack1.cpp
56 lines (48 loc) · 973 Bytes
/
knapsack1.cpp
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <ctime>
#include <cassert>
#include <complex>
#include <stack>
#include <string>
#include <cstring>
#include <chrono>
#include <random>
#include <bitset>
#include <sstream>
#include <iomanip>
using namespace std;
vector<int> w = {6, 5, 6, 6, 3, 7};
vector<int> cost = {5, 6, 4, 6, 5, 2};
vector<vector<int> > dp(100, vector<int>(100, 0));
int solve(int n, int t)
{
if (n < 0)
return 0;
if (dp[n][t] != 0)
return dp[n][t];
if (w[n] > t)
{
return dp[n][t] = solve(n - 1, t);
}
else
{
return dp[n][t] = max(solve(n - 1, t), cost[n] + solve(n - 1, t - w[n]));
}
return dp[n][t];
}
int32_t main()
{
int t = 15;
cout << solve(cost.size() - 1, t) << endl;
}