ICPC 2025 · Problem J · Stacking Cups

49th ICPC · Baku, Azerbaijan

Statement

You have a collection of nn cylindrical cups, where the iith cup is 2i12i- 1 cm tall. The cups have increasing diameters, such that cup ii fits inside cup jj if and only if i<ji < j. The base of each cup is 11 cm thick (which makes the smallest cup rather useless as it is only 11 cm tall, but you keep it for sentimental reasons).

After washing all the cups, you stack them in a tower. Each cup is placed upright (in other words, with the opening at the top) and with the centers of all the cups aligned vertically. The height of the tower is defined as the vertical distance from the lowest point on any of the cups to the highest. You would like to know in what order to place the cups such that the final height (in cm) is your favorite number. Note that all nn cups must be used.

For example, suppose n=4n= 4 and your favorite number is 99. If you place the cups of heights 77, 33, 55, 11, in that order, the tower will have a total height of 99, as shown in Figure J.1.

Figure J.1: Illustration of Sample Output 1.

Figure J.1: Illustration of Sample Output 1.

Input

The input consists of a single line containing two integers nn and hh, where nn (1n21051 \le n \le 2\cdot 10^{5}) is the number of cups and hh (1h410101\le h\le 4\cdot 10^{10}) is your favorite number.

Output

If it is possible to build a tower with height hh, output the heights of all the cups in the order they should be placed to achieve this. Otherwise, output impossible. If there is more than one valid ordering of cups, any one will be accepted.

Sample Input 1

4 9

Sample Output 1

7 3 5 1

Sample Input 2

4 100

Sample Output 2

impossible

No official solution in the source collection.