当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6168:Numbers

题目描述
zk has n numbers $a_1,a_2,...,a_n$. For each (i,j) satisfying 1≤i<j≤n, zk generates a new number $(a_i+a_j)$. These new numbers could make up a new sequence $b_1,b_2, ... ,b_{n(n-1)/2}$.
LsF wants to make some trouble. While zk is sleeping, Lsf mixed up sequence a and b with random order so that zk can't figure out which numbers were in a or b. "I'm angry!", says zk.
Can you help zk find out which n numbers were originally in a?
输入解释
Multiple test cases(not exceed 10).
For each test case:
$\bullet$The first line is an integer m(0≤m≤125250), indicating the total length of a and b. It's guaranteed m can be formed as n(n+1)/2.
$\bullet$The second line contains m numbers, indicating the mixed sequence of a and b.
Each $a_i$ is in [1,10^9]
输出解释
For each test case, output two lines.
The first line is an integer n, indicating the length of sequence a;
The second line should contain n space-seprated integers $a_1,a_2,...,a_n(a_1≤a_2≤...≤a_n)$. These are numbers in sequence a.
It's guaranteed that there is only one solution for each case.
输入样例
6
2 2 2 4 4 4
21
1 2 3 3 4 4 5 5 5 6 6 6 7 7 7 8 8 9 9 10 11
输出样例
3
2 2 2
6
1 2 3 4 5 6
来自杭电HDUOJ的附加信息
Recommend liuyiding

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6168

最后修改于 2020-10-25T23:28:58+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
4000/2000MS(Java/Others) 131072/131072K(Java/Others)