1. 程式人生 > >Codecraft-17 and Codeforces Round #391 (Div. 1 + Div. 2, combined) C

Codecraft-17 and Codeforces Round #391 (Div. 1 + Div. 2, combined) C

have ack ger mod state 9.png sample typedef itl

It‘s that time of the year, Felicity is around the corner and you can see people celebrating all around the Himalayan region. The Himalayan region has n gyms. The i-th gym has gi Pokemon in it. There are m distinct Pokemon types in the Himalayan region numbered from 1 to m. There is a special evolution camp set up in the fest which claims to evolve any Pokemon. The type of a Pokemon could change after evolving, subject to the constraint that if two Pokemon have the same type before evolving, they will have the same type after evolving. Also, if two Pokemon have different types before evolving, they will have different types after evolving. It is also possible that a Pokemon has the same type before and after evolving.

Formally, an evolution plan is a permutation f of {1, 2, ..., m}, such that f(x) = y means that a Pokemon of type x evolves into a Pokemon of type y.

The gym leaders are intrigued by the special evolution camp and all of them plan to evolve their Pokemons. The protocol of the mountain states that in each gym, for every type of Pokemon, the number of Pokemon of that type before evolving any Pokemon should be equal the number of Pokemon of that type after evolving all the Pokemons according to the evolution plan. They now want to find out how many distinct evolution plans exist which satisfy the protocol.

Two evolution plans f1 and f2 are distinct, if they have at least one Pokemon type evolving into a different Pokemon type in the two plans, i. e. there exists an i such that f1(i) ≠ f2(i).

Your task is to find how many distinct evolution plans are possible such that if all Pokemon in all the gyms are evolved, the number of Pokemon of each type in each of the gyms remains the same. As the answer can be large, output it modulo 109

 + 7.

Input

The first line contains two integers n and m (1 ≤ n ≤ 105, 1 ≤ m ≤ 106) — the number of gyms and the number of Pokemon types.

The next n lines contain the description of Pokemons in the gyms. The i-th of these lines begins with the integer gi (1 ≤ gi ≤ 105) — the number of Pokemon in the i-th gym. After that gi integers follow, denoting types of the Pokemons in the i-th gym. Each of these integers is between 1 and m.

The total number of Pokemons (the sum of all gi) does not exceed 5·105.

Output

Output the number of valid evolution plans modulo 109 + 7.

Examples input
2 3
2 1 2
2 2 3
output
1
input
1 3
3 1 2 3
output
6
input
2 4
2 1 2
3 2 3 4
output
2
input
2 2
3 2 2 1
2 1 2
output
1
input
3 7
2 1 2
2 3 4
3 5 6 7
output
24
Note

In the first case, the only possible evolution plan is:

技術分享

In the second case, any permutation of (1,  2,  3) is valid.

In the third case, there are two possible plans:

技術分享
技術分享

In the fourth case, the only possible evolution plan is:技術分享

題意:有n個道館,每個道館的寵物可以進化,但必須每個道館保證進化前後的種類數目一樣,問有多少種進化方式(進化為f(x)=y 比如f(1)=2,1變成2 )

解法:

1 其實根據樣列,我們發現 重復的寵物可以通過內部全排列

1 2 3

2 3 ,2 3是重復的,我們有2!

2 對於不重復的,也可以通過全排列

1 2 3

 2 3 4 5 (4,5)

     6 7 , (6,7)應該是1*2!*2!*2!

這樣就考慮哪些是重復的,哪些是獨有的就行

然後vector居然可以...比較相等

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 #define pb push_back
 4 typedef long long LL;
 5 const int mod = 1e9+7;
 6 const int maxn = 1000000 + 10;
 7 vector<int>a[maxn];
 8 int n,m;
 9 int main(){
10     scanf("%d%d",&n,&m);
11     for(int i=1;i<=n;i++){
12         int x;
13         scanf("%d",&x);
14         for(int j=1;j<=x;j++){
15             int num;
16             scanf("%d",&num);
17             a[num].push_back(i);
18         }
19     }
20     sort(a+1,a+1+m);
21 
22     long long ans=1;
23     long long pos=1;
24     for(int i=2;i<=m;i++){
25         if(a[i-1]==a[i]){
26             pos++;  // cout<<pos<<end
27             ans=(ans*pos)%mod;
28 
29         }else{
30             pos=1;
31         }
32        // cout<<ans<<endl;
33     }
34     printf("%lld\n",ans%mod);
35     return 0;
36 }

Codecraft-17 and Codeforces Round #391 (Div. 1 + Div. 2, combined) C