#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 members whose weights are and , where George has the . Whenever a simple majority of votes are needed (i.e., when the quota is ) George has very little power. But when the vote has to be unanimous (), 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 , then one possible winning coalition would consist of and (George). Here, each of the first two members of the coalition are critical (since if they leave the resulting coalition has only or votes), while George is not critical. In the winning coalition , no one is critical when the quota is , but everyone is when the quota is . 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 , the BPIs for the members turn out to be and , i.e., the board member with weight is a critical voter in different winning coalitions, the board member with weight is a critical voter in different winning coalitions, etc. As expected, George has no power in this case.If the quota is raised to , then the BPIs are and . In this case George has just as much power as the member with votes!Since the number of members on the board can vary from to , 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 , , where indicates the number of distinct weight values () and is the quota. The second line will contain pairs of positive integers where is a weight value and is the number of board members with that weight. The total number of votes will be in the range . The quota will satisfy the condition , and when . 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 is the Banzhaf Power Index for any member with weight . 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