Whenever Tyko and his mother Maj get into a disagreement on
Tyko’s bedtime, they play rounds of their favorite game.
If Tyko plays well enough, he gets to stay up for more hour! The game can be seen as
an evolved version of rock-paper-scissors-lizard-Spock, in that
in each round, the players choose what to play at the same
time, and the combination of their moves is what decides how
many points each player gets. To stop the game from being too
simple, there may be more possible moves in each round, and
instead of just giving out , or point (lose, draw, or win), the
reward for a combination of the players’ moves could be set as
any integer in the range .
Just before the game starts, Maj defines a matrix of integers. In each round of the
game, she and Tyko pick one integer each without knowing
beforehand what integer the other player will choose. Maj must
choose an integer
satisfying and Tyko must choose an integer satisfying . Then Tyko is
awarded points according to the element in row , column of . For example, if
then Tyko would get 3 points if both he and Maj played the
number 2 in a round. But if he played 2 and she played 1, then
he would lose 1 point.
Because Tyko is still very young, he has not yet had time to
figure out a good strategy for this game. Therefore he needs
your help to play and beat his intelligent mother so that he
can avoid going to bed!
The exact format of the problem is as follows. You will be
given the integers ,
and , as well as the matrix . You will then have to play
rounds of this game
against Maj. Maj has already chosen the integers that she will
play in all the
rounds. Your task is now to provide integers of your own, all
between and
inclusive, which are
the numbers you wish to play in the different rounds. Then the
game will be simulated and your total score will be calculated.
If you reach at least
points in total you pass the test case, otherwise it will be
judged as Wrong Answer. Being a loving mother, Maj makes sure
to make the game fair for Tyko. Therefore, she always sets the
value of such that
there is guaranteed to exist a strategy that Tyko could use
which would let him win with very high probability, no matter
how she plays.
Input
The first line of input contains the integers , () and (). Then follow
lines. The
-th of these lines
contains space
separated integers, showing row of . Each entry of fulfills .
Output
Output a single line containing space separated integers
, representing what
you wish to play in each round .
Scoring
Group
|
Points
|
Limits
|
1
|
20
|
|
2
|
80
|
No further restrictions
|
Sample Explanation
In the sample test case, and , and the last rows give the matrix . To get an accepted verdict, you
should normally print integers, in this case with all
of them being either
or . However, for
everyone’s convenience, in the sample output we decided to omit
most of the numbers and replace them with the 3 dots
instead.
Sample Input 1 |
Sample Output 1 |
2 3 -88188
1 0 -2
-2 -3 2
|
1 2 2 1 ... 1 1
|