-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathzerosAndOnes.cpp
48 lines (43 loc) · 1.2 KB
/
zerosAndOnes.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
// link https://leetcode.com/problems/ones-and-zeroes/
#include<bits/stdc++.h>
using namespace std;
class Solution {
public:
Solution(){}
int findMaxForm(vector<string>& strs, int m, int n) {
int len = strs.size();
int dp[len+1][m+1][n+1];
memset(dp, 0, sizeof dp);
for (int i=1;i<=len;i++){
int ones = count(strs[i-1].begin(), strs[i-1].end(), '1');
int zeros = strs[i-1].size()-ones;
for (int j=0;j<=m;j++){
for (int k=0;k<=n;k++){
int res = dp[i-1][j][k];
if (zeros<=j && ones<=k)
res = max(res, dp[i-1][j-zeros][k-ones]+1);
dp[i][j][k] = res;
}
}
}
return dp[len][m][n];
}
};
int main(){
Solution s;
int m,n;
cout<<"Enter the max zeros ";
cin>>m;
cout<<"Enter the max ones ";
cin>>n;
int strings;
cout<<"Eneter the no of words ";
cin>>strings;
vector<string>words;
for(int i=0;i<strings;i++) {
string str;
cin>>str;
words.push_back(str);
}
cout<<s.findMaxForm(words,m,n)<<"\n";
}