Description

The 11th Zhejiang Provincial Collegiate Programming Contest is coming! As a problem setter, Edward is going to arrange the order of the problems. As we know, the arrangement will have a great effect on the result of the contest. For example, it will take more time to finish the first problem if the easiest problem hides in the middle of the problem list.

There are N problems in the contest. Certainly, it's not interesting if the problems are sorted in the order of increasing difficulty. Edward decides to arrange the problems in a different way. After a careful study, he found out that the i-th problem placed in the j-th position will addPij points of "interesting value" to the contest.

Edward wrote a program which can generate a random permutation of the problems. If the total interesting value of a permutation is larger than or equal to M points, the permutation is acceptable. Edward wants to know the expected times of generation needed to obtain the first acceptable permutation.

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

The first line contains two integers N (1 <= N <= 12) and M (1 <= M <= 500).

The next N lines, each line contains N integers. The j-th integer in the i-th line is Pij (0 <= Pij <= 100).

Output

For each test case, output the expected times in the form of irreducible fraction. An irreducible fraction is a fraction in which the numerator and denominator are positive integers and have no other common divisors than 1. If it is impossible to get an acceptable permutation, output "No solution" instead.

Sample Input

2

3 10

2 4 1

3 2 2

4 5 3

2 6

1 3

2 4

Sample Output

3/1

No solution

题目大意跟八皇后很像,每行每列只取一个,然后求和,要求大于等于m的概率。

首先根据乘法原理,一共有n!种取法。也就是最多12! = 479001600这个复杂度太大。

但是这么多状态都是互异的,是不可能不计算的。

于是考虑状态能不能合并,考虑到我第一行取第一个,第二行取第三个这种情况,和第一行取第三个,第二行取第一个这种情况,都导致后面的行不能取1、3两列。

于是从第一行开始取,只考虑哪几列取过了。于是p[state][w]就表示取了state(二进制状压)的状态下,和为w的种数。

那么p[state|(1<<i)][w+a[cnt+1][i]] += p[state][w];

cnt表示当前取过几行,i表示那一列没有取过。

这样的话递推关系就能实现了。

最后要求大于等于m的减一下就出来了。

时间复杂度:O(n*m*2^n)

最大:12*500*2^12 = 24576000降了一个数量级。

代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <algorithm>
#define LL long long using namespace std; typedef pair<int, int> pii;
int n, m, a[][];
int p[(<<)+][], to, all;
bool vis[(<<)+]; void input()
{
scanf("%d%d", &n, &m);
for (int i = ; i <= n; ++i)
for (int j = ; j <= n; ++j)
scanf("%d", &a[i][j]);
memset(p, , sizeof(p));
memset(vis, false, sizeof(vis));
p[][] = ;
to = ;
all = ;
for (int i = ; i <= n; ++i)
{
to |= (<<i);
all *= i;
}
} //GCD
//求最大公约数
//O(logn)
int gcd(int a, int b)
{
if (b == )
return a;
else
return gcd(b, a%b);
} void bfs()
{
queue<pii> q;
q.push(pii(, ));
vis[] = true;
pii now;
int k, cnt;
while (!q.empty())
{
now = q.front();
q.pop();
k = now.first;
cnt = now.second;
vis[k] = false;
for (int i = ; i <= n; ++i)
{
if (k&(<<i))
continue;
for (int v = ; v <= m; ++v)
{
if (p[k][v] == )
continue;
p[k|(<<i)][v+a[cnt+][i]] += p[k][v];
if (!vis[k|(<<i)] && cnt+ != n)
{
q.push(pii(k|(<<i), cnt+));
vis[k|(<<i)] = true;
}
}
}
}
} void work()
{
bfs();
int ans = , d;
for (int i = ; i < m; ++i)
ans += p[to][i];
ans = all-ans;
d = gcd(all, ans);
if (ans == )
printf("No solution\n");
else
printf("%d/%d\n", all/d, ans/d);
} int main()
{
//freopen("test.in", "r", stdin);
int T;
scanf("%d", &T);
for (int times = ; times < T; ++times)
{
input();
work();
}
return ;
}

最新文章

  1. Android时区及语言代码
  2. Java实现字符串反转的8种方法
  3. 一个Linq表达式的扩展函数帮助类
  4. Unity Built-in Shader详解三
  5. 关于Freelists和Freelist Groups的研究【转】
  6. nova-network创建初始化网络
  7. 排序算法c语言描述---选择排序
  8. 触摸屏touchstart 与 click
  9. mysql 5.5中文乱码问题
  10. Shell编程进阶篇(完结)
  11. 关于input 的选中,自定义input[type=&quot;checkbox&quot;]样式
  12. Jackson流式API
  13. 自定义页面微信、微博、QQ分享效果
  14. iOS逆向开发(2):获取APP的类声明 | class-dump | dumpdecrypted
  15. js 打开摄像头方法 (定制摄像头)
  16. c语言学习5
  17. Cmake入门资料
  18. 转:display:flex不兼容Android、Safari低版本的解决方案 【flex布局】
  19. spring boot(8)-mybatis三种动态sql
  20. 06 java 基础:java 循环 递归

热门文章

  1. mybatis注解实现CURD
  2. [ArcGIS]Oracle RAC下创建地理数据库(Create Enterprise Geodatabase)失败的解决方法
  3. isinstance/issubclass/type的区别?
  4. iOS线程浅析
  5. 在线工具集合(新增cron quartz表达式在线生成……)
  6. ABAP文件选择框函数
  7. 《DevExpress》记录之TreeList
  8. Struts基本原理 + 实现简单登录(二)
  9. &lt;Perl算法小菜&gt;排序加速--Schwatzian变换及Guttman-Rosler变换
  10. jquery 实现动态表单设计