#Lutece0729. The Banzhaf Buzz-Off

The Banzhaf Buzz-Off

Migrated from Lutece 729 The Banzhaf Buzz-Off

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

A young researcher named George Lurdan has just been promoted to the board of trustees for Amalga-mated Artichokes. Each member of the board has a specified number of votes (or weights) assigned to him or her which can be used when voting on various issues that come before the board. Needless to say,the higher your weight, the more power you have on the board, but exactly how much power you have is a diffcult question. It depends not only on the distribution of the weights, but also on what percentage of the votes are needed to pass any resolution (known as the quota). For example, the current board has 55 members whose weights are 20,11,10,820, 11, 10, 8 and 11, where George has the 11. Whenever a simple majority of votes are needed (i.e., when the quota is 2626) George has very little power. But when the vote has to be unanimous (quota=50quota = 50), George has just as much power as anyone else. George would like to know how much power he has depending on what the quota is; he figures that if his power is zero, then there's no point in going to the meetings|he can buzz off and spend more time on artichoke research.

After doing some reading, George discovered the Banzhaf Power Index (BPI). The BPI measures how often each board member is a critical voter in a winning coalition. A winning coalition is a group of board members whose total weights are greater than or equal to the quota (i.e., they can pass a resolution). A critical voter in a winning coalition is any member whose departure results in a non-winning coalition. For example, if the quota is 2626, then one possible winning coalition would consist of 20,1020, 10 and 11 (George). Here, each of the first two members of the coalition are critical (since if they leave the resulting coalition has only 1111 or 2121 votes), while George is not critical. In the winning coalition 20,11,10,8,120, 11, 10, 8, 1, no one is critical when the quota is 2626, but everyone is when the quota is 5050. The BPI for any member is just the total number of winning coalitions in which that member is critical (NOTE: in reality, the BPI is actually double this figure, but that's not important for us here). For example, when the quota is 2626, the BPIs for the members turn out to be 12,4,4,412, 4, 4, 4 and 00, i.e., the board member with weight 2020 is a critical voter in 1212 different winning coalitions, the board member with weight 1111 is a critical voter in 44 different winning coalitions, etc. As expected, George has no power in this case.If the quota is raised to 4242, then the BPIs are 3,3,3,13, 3, 3, 1 and 11. In this case George has just as much power as the member with 88 votes!Since the number of members on the board can vary from 11 to 6060 , and board members' weights can change over time, George would like a general program to determine his BPI power.

Input

Input for each test case will consist of two lines: the first line will contain two integers nn, qq, where nn indicates the number of distinct weight values (1n601 \le n \le 60) and qq is the quota. The second line will contain nn pairs of positive integers w1m1w2m2wnmnw_1 m_1 w_2 m_2 \cdots w_n m_n where wiw_i is a weight value and mim_i is the number of board members with that weight. The total number of votes V=w1m1+w2m2++wnmnV = w_1m_1 +w_2m_2 +\cdots +w_nm_n will be in the range 1V601 \le V \le 60. The quota will satisfy the condition V2<qV\frac{V}{2} < q \le V , and wiwjw_i \ne w_j when iji \ne j. A line containing 0 0 will signal the end of input.

Output

For each test case, output a single line of the form: Case n: b1 b2 : : : bn where bib_i is the Banzhaf Power Index for any member with weight wiw_i. Separate the BPIs with a single blank

Samples

5 26
20 1 11 1 10 1 8 1 1 1
5 42
20 1 11 1 10 1 8 1 1 1
5 50
20 1 11 1 10 1 8 1 1 1
1 31
1 60
0 0
Case 1: 12 4 4 4 0
Case 2: 3 3 3 1 1
Case 3: 1 1 1 1 1
Case 4: 59132290782430712

Resources

2011 East Central Regional Contest