CF1914B.Preparing for the Contest

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Preparing for the Contest

Monocarp is practicing for a big contest. He plans to solve nn problems to make sure he's prepared. Each of these problems has a difficulty level: the first problem has a difficulty level of 11, the second problem has a difficulty level of 22, and so on, until the last (nn-th) problem, which has a difficulty level of nn.

Monocarp will choose some order in which he is going to solve all nn problems. Whenever he solves a problem which is more difficult than the last problem he solved, he gets excited because he feels like he's progressing. He doesn't get excited when he solves the first problem in his chosen order.

For example, if Monocarp solves the problems in the order [3,5,4,1,6,2][3, \underline{5}, 4, 1, \underline{6}, 2], he gets excited twice (the corresponding problems are underlined).

Monocarp wants to get excited exactly kk times during his practicing session. Help him to choose the order in which he has to solve the problems!

Input

The first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

Each test case consists of one line containing two integers nn and kk (2n502 \le n \le 50; 0kn10 \le k \le n - 1).

Output

For each test case, print nn distinct integers from 11 to nn, denoting the order in which Monocarp should solve the problems. If there are multiple answers, print any of them.

It can be shown that under the constraints of the problem, the answer always exists.

Samples

3
6 2
5 4
5 0
3 5 4 1 6 2
1 2 3 4 5
5 4 3 2 1

在线编程 IDE

建议全屏模式获得最佳体验