305053: CF958D2. Hyperspace Jump (hard)

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Hyperspace Jump (hard)

题目描述

It is now 125 years later, but humanity is still on the run from a humanoid-cyborg race determined to destroy it. Or perhaps we are getting some stories mixed up here... In any case, the fleet is now smaller. However, in a recent upgrade, all the navigation systems have been outfitted with higher-dimensional, linear-algebraic jump processors. Now, in order to make a jump, a ship's captain needs to specify a subspace of the $ d $ -dimensional space in which the events are taking place. She does so by providing a generating set of vectors for that subspace. Princess Heidi has received such a set from the captain of each of $ m $ ships. Again, she would like to group up those ships whose hyperspace jump subspaces are equal. To do so, she wants to assign a group number between $ 1 $ and $ m $ to each of the ships, so that two ships have the same group number if and only if their corresponding subspaces are equal (even though they might be given using different sets of vectors). Help Heidi!

输入输出格式

输入格式


The first line of the input contains two space-separated integers $ m $ and $ d $ ( $ 2<=m<=30000 $ , $ 1<=d<=5 $ ) – the number of ships and the dimension of the full underlying vector space, respectively. Next, the $ m $ subspaces are described, one after another. The $ i $ -th subspace, which corresponds to the $ i $ -th ship, is described as follows: The first line contains one integer $ k_{i} $ ( $ 1<=k_{i}<=d $ ). Then $ k_{i} $ lines follow, the $ j $ -th of them describing the $ j $ -th vector sent by the $ i $ -th ship. Each of the $ j $ lines consists of $ d $ space-separated integers $ a_{j} $ , $ j=1,...,d $ , that describe the vector ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF958D2/5fc7ef983b555ef377a8a5c9b6bc1561361f7d6b.png); it holds that $ |a_{j}|<=250 $ . The $ i $ -th subspace is the linear span of these $ k_{i} $ vectors.

输出格式


Output $ m $ space-separated integers $ g_{1},...,g_{m} $ , where ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF958D2/7522c26db7789e1b14b43b1064930f3ff2aeebbe.png) denotes the group number assigned to the $ i $ -th ship. That is, for any $ 1<=i<j<=m $ , the following should hold: $ g_{i}=g_{j} $ if and only if the $ i $ -th and the $ j $ -th subspaces are equal. In addition, the sequence $ (g_{1},g_{2},...,g_{m}) $ should be lexicographically minimal among all sequences with that property.

输入输出样例

输入样例 #1

8 2
1
5 0
1
0 1
1
0 1
2
0 6
0 1
2
0 1
1 0
2
-5 -5
4 3
2
1 1
0 1
2
1 0
1 0

输出样例 #1

1 2 2 2 3 3 3 1 

说明

In the sample testcase, the first and the last subspace are equal, subspaces 2 to 4 are equal, and subspaces 5 to 7 are equal. Recall that two subspaces, one given as the span of vectors ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF958D2/bfa487b58844902007db5ad05be8c31d3b158012.png) and another given as the span of vectors ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF958D2/871f11b420a443b0cdf743d83b2f883804e5764c.png), are equal if each vector $ v_{i} $ can be written as a linear combination of vectors $ w_{1},...,w_{k} $ (that is, there exist coefficients ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF958D2/632f4d4deef1fc961c811e3497fa75be3e37f256.png) such that $ v_{i}=α_{1}w_{1}+...+α_{k}w_{k} $ ) and, similarly, each vector $ w_{i} $ can be written as a linear combination of vectors $ v_{1},...,v_{n} $ . Recall that a sequence $ (g_{1},g_{2},...,g_{m}) $ is lexicographically smaller than a sequence $ (h_{1},h_{2},...,h_{m}) $ if there exists an index $ i $ , $ 1<=i<=m $ , such that $ g_{i}<h_{i} $ and $ g_{j}=h_{j} $ for all $ j<i $ .

Input

暂时还没有翻译

加入题单

算法标签: