Problem H. Rikka with Subset
时间限制 1000 ms
内存限制 64 MB
As we know, Rikka is poor at math. Yuta is worrying about this situation, so he gives Rikka some math tasks to practice. There is one of them:
Yuta has $n$ positive $A_1-A_n$ and their sum is $m$. Then for each subset $S$ of $A$, Yuta calculates the sum of $S$.
Now, Yuta has got $2^n$ numbers between $[0,m]$. For each $i \in [0,m]$, he counts the number of $i$s he got as $B_i$.
Yuta shows Rikka the array $B_i$ and he wants Rikka to restore $A_1-A_n$.
It is too difficult for Rikka. Can you help her?
输入数据
输出数据
For each testcase, print a single line with $n$ numbers $A_1-A_n$.
It is guaranteed that there exists at least one solution. And if there are different solutions, print the lexicographic minimum one.
样例输入
复制
2
2 3
1 1 1 1
3 3
1 3 3 1
样例输出
样例说明
In the first sample, $A$ is $[1,2]$. $A$ has four subsets $[],[1],[2],[1,2]$ and the sums of each subset are $0,1,2,3$. So $B=[1,1,1,1]$
$ Mathjax font initiator $