Problem L
Pear-wise Voting
Bob Roberts is ending his term as president of a local group of fruit aficionados call the Pear-wise Club. Being president is a plum position so many people are running, some of whom Bob thinks are just peachy, while others are just the pits. After some thought, Bob has amended the by-laws of the Pear-wise Club to use sequential pairwise voting to determine his successor.
Sequential pairwise voting works as follows: every voter presents a ballot which ranks the candidates from most to least favorable. Then two of the candidates are selected to hold a one-on-one contest with these ballots, using the relative positions of the candidates on each ballot to determine how each voter would vote in this contest. The winner of this contest then takes part in a second one-on-one contest with a third candidate; the winner of that takes part in a third contest with a fourth candidate, and so on. The winner of the election is the winner of the last one-on-one contest.
The order in which the candidates take part in the
one-on-one contests is specified by the agenda, which
is a pre-selected ordering of the candidates. The first two
candidates on the agenda take part in the first contest; the
winner of that contest then faces the third candidate on the
agenda, an so on. For example, assume we had the following set
of
|
|
|
|
|
A |
D |
C |
B |
E |
D |
C |
A |
D |
B |
C |
A |
D |
C |
C |
B |
B |
B |
A |
D |
E |
E |
E |
E |
A |
The number above each ballot indicates the number of voters
who submitted that ballot. If the agenda is ABCDE, then
sequential pairwise voting would proceed as follows: in the
first contest between A and B, A wins
Now it wasn’t out of any political science reasons that Bob picked sequential pairwise voting, or the coincidence of its name. He knows that the results are highly dependent on the agenda that’s used and as current president, Bob gets to set the agenda! Since he’s also aware of everyone’s voting preferences, he’s pretty sure that he can find an agenda so that his preference for who succeeds him will be elected. Just to be sure, he would like you to write a program which, when given a set of ballots as input, determines, for each candidate, whether there is an agenda which will result in his/her winning the election.
Input
Input begins with a line containing two positive integers
Output
For each candidate display the candidate’s letter followed by a colon, followed by either the phrase can win if an agenda exists where the candidate can win, or the phrase can’t win if no such agenda exists.
Sample Input 1 | Sample Output 1 |
---|---|
5 5 4 ADCBE 3 DCABE 3 CADBE 2 BDCAE 1 EBCDA |
A: can win B: can't win C: can win D: can win E: can't win |
Sample Input 2 | Sample Output 2 |
---|---|
3 3 1 ABC 1 BCA 1 CAB |
A: can win B: can win C: can win |