-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQ11.cpp
90 lines (72 loc) · 2.38 KB
/
Q11.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
78
79
80
81
82
83
84
85
86
87
88
89
90
#include<iostream>
using namespace std;
int **memoize_table;
int anti_squad(int n, int m, int k){
/*
Description
-----------
This function calculates no. of partitions possible of 'n' people in such a way that each group in a partition
has atmost 'm' and atleast 'k' number of people.
Input variables
---------------
- n : total number of people to be partitioned
- m : maximum number of people allowed in each group
- k : minimum number of people required in each group(this value remains same for each recursive call)
Global variables
----------------
- memoize_table : 2D array containing values returned by function call anti_squad(n,m,k) for every valid combination of n and m.
Side effects
------------
Updates the value of memoize_table[n][m] if not already calculated.
Return value
------------
Possible no. of partitions.
Approach
--------
Recursion and dynamic programming.
(for furthur details refer to analysis file - Q11_analysis.txt)
*/
//when there are zero people, only one partiton is possible that is {}
if(n == 0)
return 1;
//when the total no. of people is less than minimum count required for each group
if(n < k )
return 0;
//when value of maximum people allowed is less than minimum people required.
if(m < k)
return 0;
// two recursive call
// 1. returns partition count containing m
// 2. returns partition count not containing m
// together they give total number of possible partitions
//when the value is not already present in the table
if(memoize_table[n][m] == -1)
memoize_table[n][m] = anti_squad(n-m, m, k) + anti_squad(n,m-1, k);
return memoize_table[n][m];
}
int main(){
cout<<"\n\n\t\t\tANTI-SQAUD PARTITIONING PROBLEM";
int n,k;
while(true){
cout<<"\n\nEnter total number of people : ";
cin>>n;
if(n>0)
break;
cout<<"\n\nNumber of people cannot be less than 1!!";
}
while(true){
cout<<"\n\nEnter minimum count of people required in each group : ";
cin>>k;
if(k>0)
break;
cout<<"\n\nMinimum count cannot be less than 1!!";
}
memoize_table = new int*[n+1];
for(int i=0;i<=n;i++)
memoize_table[i] = new int[n+1];
for(int i=0;i<=n;i++)
for(int j=0;j<=n;j++)
memoize_table[i][j] = -1;
cout<<"\n\nNo. of ways in which anti sqauds can be formed is : "<<anti_squad(n,n,k);
return 0;
}