The frequent subset problem is defined as follows. Suppose U={1, 2,…,N} is the universe, and S?1??, S?2??,…,S?M??are M sets over U. Given a positive constant α, 0<α≤1, a subset B (B≠0) is α-frequent if it is contained in at least αM sets of S?1??, S?2??,…,S?M??, i.e. ∣{ i:B?S?i??}∣≥αM. The frequent subset problem is to find all the subsets that are α-frequent. For example, let U={ 1,2,3,4,5}, M=3, α=0.5, and S?1??={ 1,5}, S?2??={ 1,2,5}, S?3??={ 1,3,4}. Then there are 3 α-frequent subsets of U, which are { 1},{ 5} and { 1,5}.
Input Format
The first line contains two numbers N and α, where N is a positive integers, and α is a floating-point number between 0 and 1. Each of the subsequent lines contains a set which consists of a sequence of positive integers separated by blanks, i.e., line i+1 contains S?i??, 1≤i≤M . Your program should be able to handle N up to 20 and M up to 50.
Output Format
The number of α-frequent subsets.
样例输入
15 0.4
1 8 14 4 13 2
3 7 11 6
10 8 4 2
9 3 12 7 15 2
8 3 2 4 5
样例输出
11
题目来源
2017 ACM-ICPC 亚洲区(南宁赛区)网络赛