Problem C
Medals

In general, a ranking scheme can be thought of as a vector
of positive weights. This vector is multiplied with the vector
of medals won by each country, and the scalar product of the
two vectors defines the score of the respective country, which
is then used to produce the ranking. In this general scheme,
the European ranking technique corresponds to the weight vector
In this problem, you will only need to consider weight
vectors of the form
Given a list of countries and the number of gold, silver, and bronze medals won by each country, print the line
Canada wins!
if there is a weight vector of the above form such that Canada ranks first (possibly tied with one or more other countries) according to the ranking scheme defined by that vector. Print the line
Canada cannot win.
if no such vector exists.
Input
The input contains multiple test cases. Each test case
starts with an integer
Sample Input 1 | Sample Output 1 |
---|---|
2 Canada 3 2 1 USA 1 2 3 2 USA 2 2 2 Canada 1 1 1 0 |
Canada wins! Canada cannot win. |