#ABC269G. [ABC269G] Reversible Cards 2

[ABC269G] Reversible Cards 2

Score : 600600 points

Problem Statement

We have NN cards numbered 11 to NN. Card ii has an integer AiA_i written on the front and an integer BiB_i written on the back. Here, i=1N(Ai+Bi)=M\sum_{i=1}^N (A_i + B_i) = M. For each k=0,1,2,...,Mk=0,1,2,...,M, solve the following problem.

The NN cards are arranged so that their front sides are visible. You may choose between 00 and NN cards (inclusive) and flip them. To make the sum of the visible numbers equal to kk, at least how many cards must be flipped? Print this number of cards. If there is no way to flip cards to make the sum of the visible numbers equal to kk, print 1-1 instead.

Constraints

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 0M2×1050 \leq M \leq 2 \times 10^5
  • 0Ai,BiM0 \leq A_i, B_i \leq M
  • i=1N(Ai+Bi)=M\sum_{i=1}^N (A_i + B_i) = M
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

NN MM

A1A_1 B1B_1

A2A_2 B2B_2

\vdots

ANA_N BNB_N

Output

Print M+1M+1 lines. The ii-th line should contain the answer for k=i1k=i-1.

3 6
0 2
1 0
0 3
1
0
2
1
1
3
2

For k=0k=0, for instance, flipping just card 22 makes the sum of the visible numbers 0+0+0=00+0+0=0. This choice is optimal. For k=5k=5, flipping all cards makes the sum of the visible numbers 2+0+3=52+0+3=5. This choice is optimal.

2 3
1 1
0 1
-1
0
1
-1
5 12
0 1
0 3
1 0
0 5
0 2
1
0
1
1
1
2
1
2
2
2
3
3
4