CF1569E.Playoff Restoration

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

2k2^k teams participate in a playoff tournament. The tournament consists of 2k12^k - 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, 2k12^{k-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 2k12^{k-1} teams remain. If only one team remains, it is declared the champion; otherwise, 2k22^{k-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:

After a tournament which was conducted by the aforementioned rules ended, its results were encoded in the following way. Let pip_i be the place of the ii -th team in the tournament. The hash value of the tournament hh is calculated as h=(i=12kiApi)mod998244353h = (\sum \limits_{i=1}^{2^k} i \cdot A^{p_i}) \bmod 998244353 , where AA is some given integer.

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.

输入格式

The only line contains three integers kk , AA and hh ( 1k51 \le k \le 5 ; 100A108100 \le A \le 10^8 ; 0h9982443520 \le h \le 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 2k2^k integers, where ii -th integer should be equal to pip_i (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.

输入输出样例

  • 输入#1

    3 1337 75275197

    输出#1

    5 3 5 2 1 5 5 3
  • 输入#2

    2 100 5040100

    输出#2

    1 3 3 2
  • 输入#3

    2 100 7020100

    输出#3

    -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.

首页