Given you two integers $N$,$K$,you need to construct a set of $N$-dimensional vectors of size $N$.Each dimension of each vector can only be $0$ or $1$. And for a vector, its sum of all dimensions is $K$. Meanwhile, any vector can't be represented by other vectors using $XOR$ operation.
If such a vector group exists, find the minimum vector group, otherwise output $-1$. (Define the minimum set of vectors as the minimum lexicographic order after each vector is converted to binary)