CF1190F.Tokitsukaze and Powers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Tokitsukaze is playing a room escape game designed by SkywalkerT. In this game, she needs to find out hidden clues in the room to reveal a way to escape.

After a while, she realizes that the only way to run away is to open the digital door lock since she accidentally went into a secret compartment and found some clues, which can be interpreted as:

  • Only when you enter nn possible different passwords can you open the door;
  • Passwords must be integers ranged from 00 to (m1)(m - 1) ;
  • A password cannot be xx ( 0x<m0 \leq x < m ) if xx and mm are not coprime (i.e. xx and mm have some common divisor greater than 11 );
  • A password cannot be xx ( 0x<m0 \leq x < m ) if there exist non-negative integers ee and kk such that pe=km+xp^e = k m + x , where pp is a secret integer;
  • Any integer that doesn't break the above rules can be a password;
  • Several integers are hidden in the room, but only one of them can be pp .

Fortunately, she finds that nn and mm are recorded in the lock. However, what makes Tokitsukaze frustrated is that she doesn't do well in math. Now that she has found an integer that is suspected to be pp , she wants you to help her find out nn possible passwords, or determine the integer cannot be pp .

输入格式

The only line contains three integers nn , mm and pp ( 1n5×1051 \leq n \leq 5 \times 10^5 , 1p<m10181 \leq p < m \leq 10^{18} ).

It is guaranteed that mm is a positive integer power of a single prime number.

输出格式

If the number of possible different passwords is less than nn , print a single integer 1-1 .

Otherwise, print nn distinct integers ranged from 00 to (m1)(m - 1) as passwords. You can print these integers in any order. Besides, if there are multiple solutions, print any.

输入输出样例

  • 输入#1

    1 2 1
    

    输出#1

    -1
    
  • 输入#2

    3 5 1
    

    输出#2

    2 4 3
    
  • 输入#3

    2 5 4
    

    输出#3

    2 3
    
  • 输入#4

    4 9 8
    

    输出#4

    2 4 7 5
    

说明/提示

In the first example, there is no possible password.

In each of the last three examples, the given integer nn equals to the number of possible different passwords for the given integers mm and pp , so if the order of numbers in the output is ignored, the solution is unique as shown above.

首页