시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB147413930.709%

문제

Little Roman is studying linear congruential generators — one of the oldest and best known pseudorandom number generator algorithms. Linear congruential generator (LCG) starts with a non-negative integer number x0 also known as seed and produces an infinite sequence of non-negative integer numbers xi (0 ≤ xi < c) which are given by the following recurrence relation:

xi+1 = (axi + b) mod c

here a, b, and c are non-negative integer numbers and 0 ≤ x0 < c.

Roman is curious about relations between sequences generated by different LCGs. In particular, he has n different LCGs with parameters a(j), b(j), and c(j) for 1 ≤ j ≤ n, where the j-th LCG is generating a sequence xi(j). He wants to pick one number from each of the sequences generated by each LCG so that the sum of the numbers is the maximum one, but is not divisible by the given integer number k.

Formally, Roman wants to find integer numbers tj ≥ 0 for 1 ≤ j ≤ n to maximize s = Σnj=1 xtj(j)  subject to constraint that s mod k ≠ 0.

입력

The first line of the input file contains two integer numbers n and k (1 ≤ n ≤ 10 000, 1 ≤ k ≤ 109). The following n lines describe LCGs. Each line contains four integer numbers x0(j), a(j), b(j), and c(j) (0 ≤ a(j), b(j) ≤ 1000, 0 ≤ x0(j) < c(j) ≤ 1000).

출력

If Roman’s problem has a solution, then write on the first line of the output file a single integer s — the maximum sum not divisible by k, followed on the next line by n integer numbers tj (0 ≤ tj ≤ 109) specifying some solution with this sum.

Otherwise, write to the output file a single line with the number −1.

예제 입력 1

2 3
1 1 1 6
2 4 0 5

예제 출력 1

8
4 1

예제 입력 2

2 2
0 7 2 8
2 5 0 6

예제 출력 2

-1

힌트

In the first example, one LCG is generating a sequence 1, 2, 3, 4, 5, 0, 1, 2, . . ., while the other LCG a sequence 2, 3, 2, 3, 2, . . ..

In the second example, one LCG is generating a sequence 0, 2, 0, 2, 0, . . ., while the other LCG a sequence 2, 4, 2, 4, 2, . . ..