New Year Presents

아직 제출이 없습니다시간 제한2초메모리 제한512 MB

문제

Santa has prepared boxes with presents for nn kids, one box for each kid. There are mm kinds of presents: balloons, sweets, chocolate bars, toy cars... A child would be disappointed to receive two presents of the same kind, so all kinds of presents in one box are distinct.

Having packed all the presents, Santa realized that different boxes can contain different number of presents. It would be unfair to the children, so he decided to move some presents between boxes, and make their sizes similar. After all movements, the difference between the maximal and the minimal number of presents in a box must be as small as possible. All presents in each box should still be distinct. Santa wants to finish the job as fast as possible, so he wants to minimize the number of movements required to complete the task.

Given the sets of presents in each box, find the shortest sequence of movements of presents between boxes that minimizes the difference of sizes of the smallest and the largest box, and keeps all presents in each box distinct.

입력

The first line of input contains two integers nn, mm (1n,m100 0001 \leq n, m \leq 100\ 000), the number of boxes and the number of kinds of the presents. Denote presents with integers from 11 to mm.

Each of the following nn lines contains the description of one box. It begins with an integer s_is\_i (s_i0s\_i \geq 0), the number of presents in the box, s_is\_i distinct integers between 11 and mm follow, denoting the kinds of presents in that box.

The total number of presents in all boxes does not exceed 500,000500\\,000.

출력

Print one integer kk at the first line of output, the number of movements in the shortest sequence that makes the sizes of the boxes differ by at most one. Then print kk lines that describe movements in the same order in which they should be performed. Each movement is described by three integers from_ifrom\_i, to_ito\_i, kind_ikind\_i. It means that the present of kind kind_ikind\_i is moved from the box with number from_ifrom\_i to the box with number to_ito\_i. Boxes are numbered from one in the order they are given in the input.

At the moment when the movement is performed the present with kind kind_ikind\_i must be present in the box with number from_ifrom\_i. After performing all moves each box must not contain two presents of the same kind.

If there are several optimal solutions, output any of them.