CF1466F.Euclid's nightmare
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You may know that Euclid was a mathematician. Well, as it turns out, Morpheus knew it too. So when he wanted to play a mean trick on Euclid, he sent him an appropriate nightmare.
In his bad dream Euclid has a set S of n m -dimensional vectors over the Z2 field and can perform vector addition on them. In other words he has vectors with m coordinates, each one equal either 0 or 1 . Vector addition is defined as follows: let u+v=w , then wi=(ui+vi)mod2 .
Euclid can sum any subset of S and archive another m -dimensional vector over Z2 . In particular, he can sum together an empty subset; in such a case, the resulting vector has all coordinates equal 0 .
Let T be the set of all the vectors that can be written as a sum of some vectors from S . Now Euclid wonders the size of T and whether he can use only a subset S′ of S to obtain all the vectors from T . As it is usually the case in such scenarios, he will not wake up until he figures this out. So far, things are looking rather grim for the philosopher. But there is hope, as he noticed that all vectors in S have at most 2 coordinates equal 1 .
Help Euclid and calculate ∣T∣ , the number of m -dimensional vectors over Z2 that can be written as a sum of some vectors from S . As it can be quite large, calculate it modulo 109+7 . You should also find S′ , the smallest such subset of S , that all vectors in T can be written as a sum of vectors from S′ . In case there are multiple such sets with a minimal number of elements, output the lexicographically smallest one with respect to the order in which their elements are given in the input.
Consider sets A and B such that ∣A∣=∣B∣ . Let a1,a2,…a∣A∣ and b1,b2,…b∣B∣ be increasing arrays of indices elements of A and B correspondingly. A is lexicographically smaller than B iff there exists such i that aj=bj for all j<i and ai<bi .
输入格式
In the first line of input, there are two integers n , m ( 1≤n,m≤5⋅105 ) denoting the number of vectors in S and the number of dimensions.
Next n lines contain the description of the vectors in S . In each of them there is an integer k ( 1≤k≤2 ) and then follow k distinct integers x1,…xk ( 1≤xi≤m ). This encodes an m -dimensional vector having 1 s on coordinates x1,…xk and 0 s on the rest of them.
Among the n vectors, no two are the same.
输出格式
In the first line, output two integers: remainder modulo 109+7 of ∣T∣ and ∣S′∣ . In the second line, output ∣S′∣ numbers, indices of the elements of S′ in ascending order. The elements of S are numbered from 1 in the order they are given in the input.
输入输出样例
输入#1
3 2 1 1 1 2 2 2 1
输出#1
4 2 1 2
输入#2
2 3 2 1 3 2 1 2
输出#2
4 2 1 2
输入#3
3 5 2 1 2 1 3 1 4
输出#3
8 3 1 2 3
说明/提示
In the first example we are given three vectors:
- 10
- 01
- 11
It turns out that we can represent all vectors from our 2 -dimensional space using these vectors:
- 00 is a sum of the empty subset of above vectors;
- 01=11+10 , is a sum of the first and third vector;
- 10=10 , is just the first vector;
- 11=10+01 , is a sum of the first and the second vector.
Hence, T={00,01,10,11} . We can choose any two of the three vectors from S and still be able to obtain all the vectors in T . In such a case, we choose the two vectors which appear first in the input. Since we cannot obtain all vectors in T using only a single vector from S , ∣S′∣=2 and S′={10,01} (indices 1 and 2 ), as set {1,2} is lexicographically the smallest. We can represent all vectors from T , using only vectors from S′ , as shown below:
- 00 is a sum of the empty subset;
- 01=01 is just the second vector;
- 10=10 is just the first vector;
- 11=10+01 is a sum of the first and the second vector.