求帮忙,不会写
  • 板块学术版
  • 楼主chujiaqi2009
  • 当前回复2
  • 已保存回复2
  • 发布时间2024/11/10 14:16
  • 上次更新2024/11/10 14:49:44
查看原帖
求帮忙,不会写
764880
chujiaqi2009楼主2024/11/10 14:16

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

Monocarp will choose some order in which he is going to solve all n n 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, 5 ​ ,4,1, 6 ​ ,2], he gets excited twice (the corresponding problems are underlined).

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

The first line contains one integer t t ( 1 ≤ t ≤ 1000 1≤t≤1000) — the number of test cases.

Each test case consists of one line containing two integers n n and k k ( 2 ≤ n ≤ 50 2≤n≤50; 0 ≤ k ≤ n − 1 0≤k≤n−1).

For each test case, print n n distinct integers from 1 1 to n n, 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. Input The first line contains one integer t t ( 1 ≤ t ≤ 1000 1≤t≤1000) — the number of test cases.

Each test case consists of one line containing two integers n n and k k ( 2 ≤ n ≤ 50 2≤n≤50; 0 ≤ k ≤ n − 1 0≤k≤n−1).

Output For each test case, print n n distinct integers from 1 1 to n n, 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. 输入 3 6 2 5 4 5 0 输出 3 5 4 1 6 2 1 2 3 4 5 5 4 3 2 1

2024/11/10 14:16
加载中...