CF300A.Array
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vitaly has an array of n distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold:
- The product of all numbers in the first set is less than zero (<0) .
- The product of all numbers in the second set is greater than zero (>0) .
- The product of all numbers in the third set is equal to zero.
- Each number from the initial array must occur in exactly one set.
Help Vitaly. Divide the given array.
输入格式
The first line of the input contains integer n (3<=n<=100) . The second line contains n space-separated distinct integers a1,a2,...,an (∣ai∣<=103) — the array elements.
输出格式
In the first line print integer n1 (n1>0) — the number of elements in the first set. Then print n1 numbers — the elements that got to the first set.
In the next line print integer n2 (n2>0) — the number of elements in the second set. Then print n2 numbers — the elements that got to the second set.
In the next line print integer n3 (n3>0) — the number of elements in the third set. Then print n3 numbers — the elements that got to the third set.
The printed sets must meet the described conditions. It is guaranteed that the solution exists. If there are several solutions, you are allowed to print any of them.
输入输出样例
输入#1
3 -1 2 0
输出#1
1 -1 1 2 1 0
输入#2
4 -1 -2 -3 0
输出#2
1 -1 2 -3 -2 1 0