-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlec10_43.cpp
77 lines (56 loc) Β· 1.65 KB
/
lec10_43.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
72
73
74
75
76
77
//{ Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function template for C++
class Solution {
public:
bool isSubsetSum(vector<int>& arr, int target) {
int n = arr.size();
// Optimized DP arrays (previous & current row)
vector<bool> prev(target + 1, false), cur(target + 1, false);
// Base case: Sum 0 is always possible
prev[0] = cur[0] = true;
// If first element is within range, mark it
if (arr[0] <= target) prev[arr[0]] = true;
// Bottom-Up DP
for (int ind = 1; ind < n; ind++) {
for (int i = 1; i <= target; i++) {
bool notTake = prev[i]; // Exclude current element
bool take = false;
if (arr[ind] <= i)
take = prev[i - arr[ind]]; // Include current element
cur[i] = take || notTake; // Store result
}
prev = cur; // Move current row to previous
}
return prev[target]; // Final answer
}
};
//{ Driver Code Starts.
int main() {
int t;
cin >> t;
cin.ignore();
while (t--) {
vector<int> arr;
string input;
getline(cin, input);
stringstream ss(input);
int number;
while (ss >> number) {
arr.push_back(number);
}
int sum;
cin >> sum;
cin.ignore();
Solution ob;
if (ob.isSubsetSum(arr, sum))
cout << "true" << endl;
else
cout << "false" << endl;
cout << "~" << endl;
}
return 0;
}
// } Driver Code Ends