Problem B
Bus Lines
After many years without any public transport, the town
Krockholm will finally get a network of bus lines. The plans
are still on the drawing board, but it has been decided that
there shall be
You are given two integers
-
The graph is connected.
-
The sums of edge endpoints are distinct.
Input
The input consists of a single line containing two integers
Output
If it is not possible to construct a graph with the given
properties, print “-1”. Otherwise,
print
Sample Input 1 | Sample Output 1 |
---|---|
4 4 |
2 1 2 3 4 3 4 2 |
Sample Input 2 | Sample Output 2 |
---|---|
10 100 |
-1 |
Sample Input 3 | Sample Output 3 |
---|---|
10 1 |
-1 |