-
Notifications
You must be signed in to change notification settings - Fork 0
/
atcoder_dp_4.cpp
65 lines (56 loc) · 1.17 KB
/
atcoder_dp_4.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
57
58
59
60
61
62
63
64
65
//YashS
#include <bits/stdc++.h>
using namespace std;
#define test int T;cin>>T;while(T--)
#define int long long
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define rep(i,a,b) for(int i=a;i<b;i++)
#define pVec(v) for(auto e:v)cout<<e<<" ";cout<<"\n"
const int MOD = 1e9 + 7;
const int N = 1e5 + 7;
void init_code() {
#ifndef ONLINE_JUDGE
freopen("inputf.txt", "r", stdin);
freopen("outputf.txt", "w", stdout);
#endif // ONLINE_JUDGE
}
int n, w;
vector<pair<int, int>> v(N);
int dp[101][N];
int go(int idx, int weigh) {
if(weigh > w) {
return INT_MIN;
}
if(idx == n) {
return 0;
}
int &ans = dp[idx][weigh];
if(ans != -1) {
return ans;
}
int c1 = 0, c2 = 0, c3 = 0;
c1 = v[idx].second + go(idx + 1, weigh + v[idx].first);
c2 = go(idx + 1, weigh);
return ans = max({c1, c2});
}
void yash()
{
cin >> n >> w;
memset(dp, -1, sizeof(dp));
for(int i = 0; i < n; i++) {
cin >> v[i].first >> v[i].second;
}
int ans = go(0, 0);
cout << ans << '\n';
}
signed main()
{
init_code();
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
// test
yash();
return 0;
}