CF BUDDY
← Problems·

1534E · Lost Array

2300 · graphs, greedy, interactive

Problem: This is an interactive problem.

Note: the XOR-sum of an array a1,a2,,ana_1, a_2, \ldots, a_n (1ai1091 \le a_i \le 10^9) is defined as a1a2ana_1 \oplus a_2 \oplus \ldots \oplus a_n, where \oplus denotes the bitwise XOR operation.

Little Dormi received an array of nn integers a1,a2,,ana_1, a_2, \ldots, a_n for Christmas. However, while playing with it over the winter break, he accidentally dropped it into his XOR machine, and the array got lost.

The XOR machine is currently configured with a query size of kk (which you cannot change), and allows you to perform the following type of query: by giving the machine kk distinct indices x1,x2,,xkx_1, x_2, \ldots, x_k, it will output ax1ax2axka_{x_1} \oplus a_{x_2} \oplus \ldots \oplus a_{x_k}.

As Little Dormi's older brother, you would like to help him recover the XOR-sum of his array a1,a2,,ana_1, a_2, \ldots, a_n by querying the XOR machine.

Little Dormi isn't very patient, so to be as fast as possible, you must query the XOR machine the minimum number of times to find the XOR-sum of his array. Formally, let dd be the minimum number of queries needed to find the XOR-sum of any array of length nn with a query size of kk. Your program will be accepted if you find the correct XOR-sum in at most dd queries.

Lastly, you also noticed that with certain configurations of the machine kk and values of nn, it may not be possible to recover the XOR-sum of Little Dormi's lost array. If that is the case, you should report it as well.

The array a1,a2,,ana_1, a_2, \ldots, a_n is fixed before you start querying the XOR machine and does not change with the queries.

Input Format: The only line of input contains the integers nn and kk (1n5001 \le n \le 500, 1kn1 \le k \le n), the length of the lost array and the configured query size of the XOR machine.

Elements of the original array satisfy 1ai1091 \le a_i \le 10^9.

It can be proven that that if it is possible to recover the XOR sum under the given constraints, it can be done in at most 500500 queries. That is, d500d \le 500.

After taking nn and kk, begin interaction.

Output Format: If it is impossible to recover the XOR-sum of the array, output 1-1 immediately after taking nn and kk. Do not begin interaction.

Otherwise, when your program finds the XOR-sum of the lost array a1,a2,,ana_1, a_2, \ldots, a_n, report the answer in the following format: "! x", where xx is the XOR sum of the array a1,a2,,ana_1, a_2, \ldots, a_n, and terminate your program normally immediately after flushing the output stream.

Note that answering does not count as a query.

Note: In the first example interaction, the array a1,a2,,ana_1, a_2, \ldots, a_n is 2,1,7,5,62, 1, 7, 5, 6 and its XOR-sum is 77.

The first query made asks for indices 1,2,31,2,3, so the response is a1a2a3=217=4a_1 \oplus a_2 \oplus a_3 = 2 \oplus 1 \oplus 7 = 4.

The second query made asks for indices 2,3,52,3,5, so the response is a2a3a5=176=0a_2 \oplus a_3 \oplus a_5 = 1 \oplus 7 \oplus 6 = 0.

The third query made asks for indices 4,1,54,1,5, so the response is a4a1a5=526=1a_4 \oplus a_1 \oplus a_5 = 5 \oplus 2 \oplus 6 = 1. Note that the indices may be output in any order.

Additionally, even though three queries were made in the example interaction, it is just meant to demonstrate the interaction format and does not necessarily represent an optimal strategy.

In the second example interaction, there is no way to recover the XOR-sum of Little Dormi's array no matter what is queried, so the program immediately outputs 1-1 and exits.

Sample Cases

Case 1

Input

5 3

4

0

1

Output

? 1 2 3

? 2 3 5

? 4 1 5

! 7

Case 2

Input

3 2

Output

-1

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback