Hide

Problem E
Poplava

Mirko dreamt of a histogram last night that consists of N columns. Each column is one meter wide and the heights of the columns in meters are h1,h2,,hN.

The capacity of a histogram is the maximal amount of water that a histogram can hold so that the configuration of the water is “stable”, or, in other words, that it doesn’t move under the influence of gravity. Figure 1 depicts an example of a stable configuration.

\includegraphics[width=93px]{picture.png}
Figure 1: Stable configuration of a histogram

Formally, let us denote the heights of water above the columns with v1,v2,,vN. The configuration of the water is stable if the following holds:

  • hi+vihi1+vi1, for each i>2 such that vi>0

  • hi+vihi+1+vi+1, for each iN1 such that vi>0

  • v1=0 and vN=0

When Mirko woke up, he wanted to know whether he could somehow choose the heights of columns that are a permutation of the set {1,2,,N} such that the capacity of such histogram is equal to its lucky number X? Help Mirko and find one histogram that meets his requirements.

Input

The first line of input contains integers N and X (1N1000000, 1X1015).

Output

If a histogram of capacity exactly X does not exist, output -1. Otherwise, output numbers h1,h2,,hN that meet the given requirements in the first line separated by space. If there are multiple such solutions, output any.

Sample Input 1 Sample Output 1
3 1
3 1 2
Sample Input 2 Sample Output 2
4 1
4 3 1 2
Sample Input 3 Sample Output 3
8 17
6 2 3 1 8 4 5 7
Hide

Please log in to submit a solution to this problem

Log in