-
Notifications
You must be signed in to change notification settings - Fork 0
/
279 B.cpp
71 lines (61 loc) · 1.57 KB
/
279 B.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
66
67
68
69
70
71
#include<bits/stdc++.h>
using namespace std;
int n;
long long int s;
int arr[100001];
int dp[100001];
int rec(int x,long long int s){
if(s==0) return 0;
if(x<0||s<0) return 0;
if(dp[x][s]!=-1) return dp[x][s];
int include=0,exclude=0;
exclude=rec(x-1,s);
if(s-arr[x]>=0){
include=rec(x-1,s-arr[x])+1;
}
return dp[x][s]=max(include,exclude);
}
int main(){
cin>>n>>s;
for(int i=0;i<n;i++){
cin>>arr[i];
}
memset(dp,-1,sizeof(dp));
int ans=rec(n-1,s);
if(ans==0){
cout<<ans<<endl;}
else{
cout<<ans-1<<endl;
}
return 0;
}
// #include<bits/stdc++.h>
// using namespace std;
// int n;
// long long int s;
// int arr[100001];
// int dp[100001];
// // Function to find the maximum number of elements with sum <= s
// int rec(int x, long long int s) {
// if (s == 0) return 0; // Base case: sum is zero, no elements needed
// if (x < 0 || s < 0) return 0; // Base case: invalid state
// if (dp[x] != -1) return dp[x]; // Return memoized result
// // Exclude the current element
// int exclude = rec(x - 1, s);
// // Include the current element if it fits in the sum
// int include = 0;
// if (s - arr[x] >= 0) {
// include = rec(x - 1, s - arr[x]) + 1;
// }
// // Memoize and return the result
// return dp[x] = max(include, exclude);
// }
// int main() {
// cin >> n >> s;
// for (int i = 0; i < n; i++) {
// cin >> arr[i];
// }
// memset(dp, -1, sizeof(dp));
// cout << rec(n - 1, s)-1 << endl;
// return 0;
// }