CF958D2.Hyperspace Jump (hard)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ki ( 1<=ki<=d ). Then ki 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 aj , j=1,...,d , that describe the vector ; it holds that ∣aj∣<=250 . The i -th subspace is the linear span of these ki vectors.
输出格式
Output m space-separated integers g1,...,gm , where denotes the group number assigned to the i -th ship. That is, for any 1<=i<j<=m , the following should hold: gi=gj if and only if the i -th and the j -th subspaces are equal. In addition, the sequence (g1,g2,...,gm) 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 and another given as the span of vectors
, are equal if each vector vi can be written as a linear combination of vectors w1,...,wk (that is, there exist coefficients
such that vi=α1w1+...+αkwk ) and, similarly, each vector wi can be written as a linear combination of vectors v1,...,vn .
Recall that a sequence (g1,g2,...,gm) is lexicographically smaller than a sequence (h1,h2,...,hm) if there exists an index i , 1<=i<=m , such that gi<hi and gj=hj for all j<i .