Pro.ID22005 TitlePartitioning for fun and profit Title链接http://10.20.2.8/oj/exercise/problem?problem_id=22005 AC0 Submit0 Ratio- 时间&空间限制描述A partition of a positive integer number m into n elements (n ≤ m) is a sequence of positive numbers a1, ...,an such that a1+...+an = m and a1 ≤ a2 ≤ ... ≤ an. Your task is to find a partition of a number m which occupies the k-th position in the lexicographically ordered sequence of all partitions of m into n elements. The lexicographic ordering among the partitions of a number is defined as follows. For two partitions a and b of m into n elements such that a = [a1,...,an] and b = [b1,...,bn] we have a < b if and only if there exists an 1 ≤ i ≤ n such that for all j < i we have aj = bj and ai < bi. The sequence of all partitions is ordered in increasing lexicographic order and at the first we have the following sequence 1, 1, ... 1, m-n+1. 输入The first line of input contains a number c giving the number of cases that follow. Each of the subsequent c lines contains three numbers: 1 ≤ m ≤ 220, 1 ≤ n ≤ 10 and 1 ≤ k which is not bigger than the number of partitions of m into n elements. 输出Description A partition of a positive integer number m into n elements (n ≤ m) is a sequence of positive numbers a1, ...,an such that a1+...+an = m and a1 ≤ a2 ≤ ... ≤ an. Your task is to find a partition of a number m which occupies the k-th position in the lexicographically ordered sequence of all partitions of m into n elements. The lexicographic ordering among the partitions of a number is defined as follows. For two partitions a and b of m into n elements such that a = [a1,...,an] and b = [b1,...,bn] we have a < b if and only if there exists an 1 ≤ i ≤ n such that for all j < i we have aj = bj and ai < bi. The sequence of all partitions is ordered in increasing lexicographic order and at the first we have the following sequence 1, 1, ... 1, m-n+1. Input The first line of input contains a number c giving the number of cases that follow. Each of the subsequent c lines contains three numbers: 1 ≤ m ≤ 220, 1 ≤ n ≤ 10 and 1 ≤ k which is not bigger than the number of partitions of m into n elements. Output For each input data set print the k-th partition of m into n elements. Each element of a partition is to be printed in a separate line. Sample Input 2 Sample Output 1 Source 样例输入2 样例输出1 作者 |