← Home
write a go solution for Description:
A sequence of n integers is called a permutation if it contains all integers from 1 to n exactly once.

Given two integers n and k, construct a permutation a of numbers from 1 to n which has exactly k peaks. An index i of an array a of size n is said to be a peak if 1<i<n and a_igta_i-1 and a_igta_i+1. If such permutation is not possible, then print -1.

Input Format:
The first line contains an integer t (1<=t<=100) — the number of test cases.

Then t lines follow, each containing two space-separated integers n (1<=qn<=q100) and k (0<=k<=n) — the length of an array and the required number of peaks.

Output Format:
Output t lines. For each test case, if there is no permutation with given length and number of peaks, then print -1. Otherwise print a line containing n space-separated integers which forms a permutation of numbers from 1 to n and contains exactly k peaks.

If there are multiple answers, print any.

Note:
In the second test case of the example, we have array a=[2,4,1,5,3]. Here, indices i=2 and i=4 are the peaks of the array. This is because (a_2gta_1, a_2gta_3) and (a_4gta_3, a_4gta_5).. Output only the code with no comments, explanation, or additional text.