시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB0000.000%

문제

Little Q's factory recently purchased $m$ pieces of new equipment, labeled by $1,2,\dots,m$.

There are $n$ workers in the factory, labeled by $1,2,\dots,n$. Each worker can be assigned to no more than one piece of equipment, and no piece of equipment can be assigned to multiple workers. If Little Q assigns the $i$-th worker to the $j$-th piece of equipment, he will need to pay $a_i\times j^2+b_i\times j+c_i$ dollars.

Now please for every $k$ ($1\leq k\leq n$) find $k$ pairs of workers and pieces of equipment, then assign workers to these pieces of equipment, such that the total cost for these $k$ workers is minimized.

입력

The first line contains a single integer $T$ ($1 \leq T \leq 10$), the number of test cases. For each test case:

The first line contains two integers $n$ and $m$ ($1 \leq n \leq 50$, $n\leq m\leq 10^8$) denoting the number of workers and the number of pieces of equipment.

Each of the following $n$ lines contains three integers $a_i$, $b_i$, $c_i$ ($1\leq a_i\leq 10$, $-10^8\leq b_i\leq 10^8$, $0\leq c_i\leq 10^{16}$, $b_i^2\leq 4a_ic_i$) describing a worker.

출력

For each test case, output a single line containing $n$ integers, the $k$-th ($1\leq k\leq n$) of which is the minimum possible total cost for $k$ pairs of workers and pieces of equipment.

예제 입력 1

1
3 5
2 3 10
2 -3 10
1 -1 4

예제 출력 1

4 15 37