-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAssignment Problem.cpp
69 lines (53 loc) · 1.18 KB
/
Assignment Problem.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
// Assignment problem
// dp+bitmask
// tutorial geeks for geeks
#include <iostream>
#include <string.h>
#include <cstdio>
#include <algorithm>
using namespace std;
int n;
int a[23][23];
unsigned long long int dp[1<<20];
unsigned long long int allmask;
unsigned long long int func( unsigned long long int mask)
{
if(allmask==mask){
return 1;
}
if(dp[mask]!=-1){
return dp[mask];
}
unsigned long long int ways = 0;
int N =__builtin_popcount(mask);
// cout << N << endl;
for(int j=0;j<n;j++)
{
if(a[N][j]==1){
if(mask & (1 << j)) continue;
else{
//cout <<mask << " " << i << endl;
ways = ways + func(mask | (1 << j));
}
}
}
dp[mask] = ways;
return dp[mask];
}
int main() {
int t;
cin >> t;
while(t--){
cin >> n;
allmask = (1<<n)-1;
memset(dp,-1,sizeof(dp));
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> a[i][j];
}
}
unsigned long long int l = func(0);
cout << l << endl;
}
return 0;
}