1960.Jon Snow and his Favourite Number

Time Limit: 1s Memory Limit: 256MB

Jon Snow now has to fight with White Walkers. He has n rangers, each of which has his own strength. Also Jon Snow has his favourite number x. Each ranger can fight with a white walker only if the strength of the white walker equals his strength. He however thinks that his rangers are weak and need to improve. Jon now thinks that if he takes the bitwise XOR of strengths of some of rangers with his favourite number x, he might get soldiers of high strength. So, he decided to do the following operation k times: Arrange all the rangers in a straight line in the order of increasing strengths. Take the bitwise XOR (is written as 1960_1.png) of the strength of each alternate ranger with x and update it's strength. Suppose, Jon has 5 rangers with strengths [9,7,11,15,5] and he performs the operation 1 time with x=2. He first arranges them in the order of their strengths, [5,7,9,11,15]. Then he does the following: The strength of first ranger is updated to 1960_2.png, i.e. 7. The strength of second ranger remains the same, i.e. 7. The strength of third ranger is updated to 1960_3.png, i.e. 11. The strength of fourth ranger remains the same, i.e. 11. The strength of fifth ranger is updated to 1960_4.png, i.e. 13. The new strengths of the 5 rangers are [7,7,11,11,13]
Now, Jon wants to know the maximum and minimum strength of the rangers after performing the above operations k times. He wants your help for this task. Can you help him?

Input Format(From the terminal/stdin)

Input First line consists of three integers n, k, x (1 \le n \le 105, 0 \le k \le 105, 0 \le x \le 103) - number of rangers Jon has, the number of times Jon will carry out the operation and Jon's favourite number respectively.Second line consists of n integers representing the strengths of the rangers a1,a2,...,an (0 \le ai \le 103).

Output Format(To the terminal/stdout)

Output Output two integers, the maximum and the minimum strength of the rangers after performing the operation k times.

Sample Input 1

Copy
5 1 2
9 7 11 15 5
 · · \n
 · ·  ·  · \n

Sample Output 1

Copy
13 7
  · \n

Sample Input 2

Copy
2 100000 569
605 986
 ·      ·   \n
   ·   \n

Sample Output 2

Copy
986 605
   ·   \n

Submit

请先 登录

© 2025 FAQs