시간 제한메모리 제한제출정답맞힌 사람정답 비율
7 초 (추가 시간 없음) 256 MB222100.000%

문제

Malvina wants to give Buratino a birthday present --- an undirected graph $G = (V, E)$. Buratino is turning $k$, and Malvina wants to reflect this date in the graph by splitting it into $k$ parts, that is, by presenting the set of nodes of the graph $V$ as $k$ pairwise disjoint subsets $V_1$, $V_2$, $\ldots$, $V_k$. Naturally, in this partition, all of the subsets $V_i$ must be non-empty.

To demonstrate the connection between the past $k$ years, Malvina wants to split the graph in such a manner that for each of the edges $uv$, its end nodes $u$ and $v$ belonged to either the same or two adjacent subsets. Only subsets $V_i$ and $V_{i+1}$ are adjacent for every $i = 1, 2, \ldots k-1$.

입력

The first line of the input file contains two space-separated numbers $N$ and $k$ --- the number of nodes in the graph ($1$ $\le$ $N$ $\le$ $2\,000$) and the number of parts ($1$ $\le$ $k$ $\le$ $2\,000$) that the graph must be divided into.

The graph is defined in an adjacency matrix $G$. The following $N$ lines of the file each contain $N$ symbols. The $j$th symbol of the $i$th line equals '1' if there is an edge between the nodes $i$ and $j$, and '0' if there is no edge between these nodes. It is guaranteed that the matrix is symmetrical ($g_{i, j}$ = $g_{j, i}$), and that the matrix diagonal only contains zeroes ($g_{i, i}$ = $0$).

출력

In the first line of the output file, print "Yep", if the graph can be split into $k$ parts in the desired manner. Next, print $k$ lines. The $i$th line ($i$ = $1$, $2$, $\ldots$, $k$) contains the description of the $i$th part: first, print the number of nodes in $V_i$, next print the indices of the nodes belonging to $V_i$, separated by spaces, numbered in the same order as in the input data. If there are several ways of splitting the graph, print any one of them.

If it is impossible to split the graph into $k$ parts in the desired way, print "Nope".

예제 입력 1

4 3
0110
1010
1101
0010

예제 출력 1

Yep
1 2
2 1 3
1 4

예제 입력 2

3 3
011
101
110

예제 출력 2

Nope