For Solution
Click Here!
2k2k teams participate in a playoff tournament. The tournament consists of 2k−12k−1 games. They are held as follows: first of all, the teams are split into pairs: team 11 plays against team 22, team 33 plays against team 44 (exactly in this order), and so on (so, 2k−12k−1 games are played in that phase). When a team loses a game, it is eliminated, and each game results in elimination of one team (there are no ties). After that, only 2k−12k−1 teams remain. If only one team remains, it is declared the champion; otherwise, 2k−22k−2 games are played: in the first one of them, the winner of the game “11 vs 22” plays against the winner of the game “33 vs 44“, then the winner of the game “55 vs 66” plays against the winner of the game “77 vs 88“, and so on. This process repeats until only one team remains.
After the tournament ends, the teams are assigned places according to the tournament phase when they were eliminated. In particular:
- the winner of the tournament gets place 11;
- the team eliminated in the finals gets place 22;
- both teams eliminated in the semifinals get place 33;
- all teams eliminated in the quarterfinals get place 55;
- all teams eliminated in the 1/8 finals get place 99, and so on.
For example, this picture describes one of the possible ways the tournament can go with k=3k=3, and the resulting places of the teams:

Unfortunately, due to a system crash, almost all tournament-related data was lost. The only pieces of data that remain are the values of kk, AA and hh. You are asked to restore the resulting placing of the teams in the tournament, if it is possible at all.
Playoff Restoration solution codeforces
The only line contains three integers kk, AA and hh (1≤k≤51≤k≤5; 100≤A≤108100≤A≤108; 0≤h≤9982443520≤h≤998244352).
If it is impossible to find any placing of the teams that is consistent with the data you have, print one integer −1−1.
Otherwise, print 2k2k integers, where ii-th integer should be equal to pipi (the place of the ii-th team). Note that your answer should be consistent with one of the possible ways the tournament could go, and note that the initial structure of the tournament is fixed (for example, teams 11 and 22 always play in the first phase of the tournament against each other). If there are multiple ways to restore the places of the teams which are consistent with the data you have, print any of them.
Playoff Restoration solution codeforces
input
3 1337 75275197
output
5 3 5 2 1 5 5 3
input
2 100 5040100
output
1 3 3 2
input
2 100 7020100
Playoff Restoration solution codeforces
-1
The tournament for the first example is described in the statement.
For the third example, the placing [1,2,3,3][1,2,3,3] (team 11 gets place 11, team 22 gets place 22, teams 33 and 44 get place 33) could result in a hash value of 70201007020100 with A=100A=100, but no tournament can result in such placing since teams 11 and 22 play against each other in the semifinals, so they cannot get two first places.